summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-video/coherence/files/coherence-init')
-rw-r--r--media-video/coherence/files/coherence-init23
1 files changed, 0 insertions, 23 deletions
diff --git a/media-video/coherence/files/coherence-init b/media-video/coherence/files/coherence-init
deleted file mode 100644
index 6e71e8f77f6d..000000000000
--- a/media-video/coherence/files/coherence-init
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/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 $?
-}
-