blob: 31af7372e1d63f993f0fb157013744e5b8e63c18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/sbin/openrc-run
: ${port:=9101}
: ${conf:=/etc/bacula/bacula-dir.conf}
: ${exec_user:=bacula}
: ${exec_group:=bacula}
name="Bacula Director"
command="/usr/sbin/$RC_SVCNAME"
command_args="-u $exec_user -g $exec_group -c $conf"
pidfile="/var/run/bacula/$RC_SVCNAME.$port.pid"
depend() {
need net
use dns
}
start_pre() {
checkpath -d -m 0775 -o ${exec_user}:${exec_group} /var/run/bacula
}
|