diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-05-21 14:55:34 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-05-21 14:57:46 +0000 |
commit | cf4e9c8ef0d2909df977fd37fc958d923ec2c11f (patch) | |
tree | 39bf730ca6ecd4af81bcfb676ecf623013db37a1 /main/freeswitch/freeswitch.initd | |
parent | 325b44c6346db54d7ec2dc236e3176bda3f0ad52 (diff) | |
download | aports-cf4e9c8ef0d2909df977fd37fc958d923ec2c11f.tar.bz2 aports-cf4e9c8ef0d2909df977fd37fc958d923ec2c11f.tar.xz |
main/freeswitch: fix default paths to be FHS compliant
fixes #4065
Diffstat (limited to 'main/freeswitch/freeswitch.initd')
-rwxr-xr-x | main/freeswitch/freeswitch.initd | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/main/freeswitch/freeswitch.initd b/main/freeswitch/freeswitch.initd index eebabe188b..63ec58ad10 100755 --- a/main/freeswitch/freeswitch.initd +++ b/main/freeswitch/freeswitch.initd @@ -29,10 +29,8 @@ start() { limits start-stop-daemon --start --quiet --exec /usr/bin/freeswitch \ -- \ - -nc -conf /etc/freeswitch -log /var/log/freeswitch \ - -run /var/run/freeswitch -db /var/lib/freeswitch/db \ - -htdocs /usr/share/freeswitch/htdocs \ - -scripts /etc/freeswitch/scripts ${OPTS} + -nc \ + ${OPTS} eend $? } |