blob: 2c1a374f850d4ad63682b44f7260b77523bffa1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/sbin/openrc-run
: ${cfgfile:="/etc/jool/$RC_SVCNAME.conf"}
command="/usr/bin/joold"
command_args="$cfgfile"
command_background=yes
pidfile="/run/$RC_SVCNAME.pid"
required_files="$cfgfile"
depend() {
need net
}
|