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-video/coherence/files/coherence-init

24 lines
402 B

#!/sbin/runscript
depend() {
need net
after bootmisc
}
start() {
ebegin "Starting Coherence"
start-stop-daemon --start --exec /usr/bin/coherence \
--pidfile /var/run/coherence.pid \
--background \
-- -c /etc/coherence.conf
eend $?
}
stop() {
ebegin "Stopping Coherence"
start-stop-daemon --stop --exec /usr/bin/coherence \
--pidfile /var/run/coherence.pid
eend $?
}