summaryrefslogtreecommitdiffstats
path: root/unstable/freeswitch/freeswitch.initd
diff options
context:
space:
mode:
Diffstat (limited to 'unstable/freeswitch/freeswitch.initd')
-rw-r--r--unstable/freeswitch/freeswitch.initd19
1 files changed, 0 insertions, 19 deletions
diff --git a/unstable/freeswitch/freeswitch.initd b/unstable/freeswitch/freeswitch.initd
deleted file mode 100644
index 34f44139..00000000
--- a/unstable/freeswitch/freeswitch.initd
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/sbin/runscript
-
-NAME=freeswitch
-USER=freeswitch
-DAEMON=/usr/bin/freeswitch
-OPTIONS_START="-u $USER -g $GROUP -nc"
-OPTIONS_STOP="-stop"
-
-start() {
- ebegin "Starting $NAME"
- $DAEMON $OPTIONS_START
- eend 0
- }
-
-stop() {
- ebegin "Stopping $NAME"
- $DAEMON $OPTIONS_STOP
- eend 0
- }