diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-03-25 06:50:15 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-03-25 06:50:15 +0000 |
commit | 0935adc881c214273ff81eaa0992af009a6cf2ab (patch) | |
tree | c084ac540d3e08c7c8e4ae2f5d3877c338b959e1 /testing/freeswitch/freeswitch.initd | |
parent | 7faeb39657f5a9257c411e897f87ce57ba74bc45 (diff) | |
parent | f795115fc0210db52c4325aa57a4005cd6d4df7d (diff) | |
download | aports-0935adc881c214273ff81eaa0992af009a6cf2ab.tar.bz2 aports-0935adc881c214273ff81eaa0992af009a6cf2ab.tar.xz |
Merge remote branch 'mmason/master'
Diffstat (limited to 'testing/freeswitch/freeswitch.initd')
-rwxr-xr-x[-rw-r--r--] | testing/freeswitch/freeswitch.initd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/freeswitch/freeswitch.initd b/testing/freeswitch/freeswitch.initd index 6433bb43d..84381d771 100644..100755 --- a/testing/freeswitch/freeswitch.initd +++ b/testing/freeswitch/freeswitch.initd @@ -20,14 +20,14 @@ start() { OPTS="${OPTS} ${FREESWITCH_OPTS}" ebegin "Starting Freeswitch" - start-stop-daemon --start --quiet --exec /opt/freeswitch/bin/freeswitch \ + start-stop-daemon --start --quiet --exec /usr/bin/freeswitch \ --pidfile /var/run/freeswitch.pid -- -nc ${OPTS} eend $? } stop() { ebegin "Stopping Freeswitch" - start-stop-daemon --stop --quiet --pidfile /opt/freeswitch/log/freeswitch.pid + start-stop-daemon --stop --quiet --pidfile /var/run/freeswitch.pid eend $? } |