summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/mserv/files/mserv-0.35-initd')
-rw-r--r--media-sound/mserv/files/mserv-0.35-initd22
1 files changed, 0 insertions, 22 deletions
diff --git a/media-sound/mserv/files/mserv-0.35-initd b/media-sound/mserv/files/mserv-0.35-initd
deleted file mode 100644
index 86a5a4049562..000000000000
--- a/media-sound/mserv/files/mserv-0.35-initd
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License, v2 or later
-
-depend() {
- need net
- after apache
- after apache2
-}
-
-start() {
- ebegin "Starting Mserv"
- start-stop-daemon --start -o -b --chuid mserv --exec /usr/bin/mserv -- \
- -r /var/spool/mserv -c /etc/mserv/config -p ${PORT}
- eend $?
-}
-
-stop() {
- ebegin "Stopping Mserv"
- start-stop-daemon --stop -o -q --exec /usr/bin/mserv
- eend $?
-}