aboutsummaryrefslogtreecommitdiffstats
path: root/main/bacula/bacula-fd.initd
blob: 9e0ee53c4e7999985dfe45cb0686768dc111d820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/sbin/openrc-run

: ${port:=9102}
: ${cfgfile:=/etc/bacula/bacula-fd.conf}
: ${command_user:=root}
: ${command_group:=root}

name="Bacula File Daemon"
command="/usr/sbin/${RC_SVCNAME}"
command_args="-u $command_user -g $command_group -c $cfgfile"
pidfile="/run/bacula/${RC_SVCNAME}.$port.pid"

depend() {
	need net
	use dns
	after firewall
}

start_pre() {
	checkpath --quiet --directory --mode 0775\
		$(dirname $pidfile)
}