You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/stargazer/files/rscriptd

23 lines
453 B

#!/sbin/openrc-run
DAEMON=/usr/sbin/rscriptd
RSCRIPTD_OPTS="/etc/stargazer/rscriptd.conf"
PIDFILE="/run/rscriptd.pid"
depend() {
need net
provide rscriptd
}
start() {
ebegin "Starting rscriptd"
start-stop-daemon --start --quiet --background --make-pidfile --pidfile ${PIDFILE} --exec ${DAEMON} -- ${RSCRIPTD_OPTS}
eend $?
}
stop() {
ebegin "Stopping rscriptd"
start-stop-daemon --stop --quiet --pidfile ${PIDFILE}
rm -f ${PIDFILE}
eend $?
}