22 lines
501 B
Text
22 lines
501 B
Text
|
#!/sbin/openrc-run
|
||
|
|
||
|
name=$RC_SVCNAME
|
||
|
cfgfile="/etc/conf.d/$RC_SVCNAME.conf"
|
||
|
pidfile="/var/run/$RC_SVCNAME.pid"
|
||
|
command="/usr/bin/insaned"
|
||
|
command_user="$INSANED_USER"
|
||
|
command_group="$INSANED_GROUP"
|
||
|
command_args="-f $INSANED_LOG -p $pidfile ${INSANED_EXTRAOPTS}"
|
||
|
start_stop_daemon_args=""
|
||
|
command_background="no"
|
||
|
|
||
|
depend() {
|
||
|
after saned
|
||
|
}
|
||
|
|
||
|
start_pre() {
|
||
|
checkpath --directory --owner $command_user:$command_group --mode 0775 \
|
||
|
/var/run/$RC_SVCNAME \
|
||
|
/var/log/$RC_SVCNAME
|
||
|
}
|