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/media-libs/nas/files/nas.init.d

20 lines
347 B

#!/sbin/openrc-run
depend() {
need net
after alsasound esd
}
start() {
ebegin "Starting nas"
start-stop-daemon --start --quiet --exec /usr/bin/nasd --background \
--pidfile /var/run/nasd.pid --make-pidfile -- $NAS_OPTIONS
eend $?
}
stop() {
ebegin "Stopping nas"
start-stop-daemon --stop --quiet --pidfile /var/run/nasd.pid
eend $?
}