summaryrefslogtreecommitdiffstats
path: root/unstable/freeswitch/freeswitch.initd
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-02-02 08:58:31 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-02-02 08:58:31 +0000
commit7f4b6f87039a8d6a59ee2a7dd614d2410d519530 (patch)
treeb760062600941cc69d70dcf59d5b580561e6d62d /unstable/freeswitch/freeswitch.initd
parent1b6a10374fbd4e77b065b66c5e0890111468bd1a (diff)
downloadaports-7f4b6f87039a8d6a59ee2a7dd614d2410d519530.tar.bz2
aports-7f4b6f87039a8d6a59ee2a7dd614d2410d519530.tar.xz
testing/freeswitch: moved from unstable
fixes #257
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 34f441390..000000000
--- 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
- }