net/freeswitch: Updated to 1.0.6 (which allowed to eliminate patches), fixed network failure on startup, fixed OOM on exit, and moved logging of fs console output to file (on /tmp) instead of to syslog
git-svn-id: svn://svn.openwrt.org/openwrt/packages@20836 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@ -5,11 +5,16 @@ START=90
|
||||
DEFAULT=/etc/default/freeswitch
|
||||
OPTIONS=""
|
||||
|
||||
boot() {
|
||||
# Do nothing on boot
|
||||
exit 0
|
||||
}
|
||||
|
||||
start() {
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
mkdir -p $FS_DIR_DB
|
||||
mkdir -p $FS_DIR_LOG
|
||||
$FS_DIR/usr/bin/freeswitch $OPTIONS -c
|
||||
{ $FS_DIR/usr/bin/freeswitch $OPTIONS -c >$FS_DIR_LOG/console.log ; } &
|
||||
}
|
||||
|
||||
stop() {
|
||||
|
Reference in New Issue
Block a user