From: Daniel Dickinson Date: Tue, 15 Jun 2010 22:20:49 +0000 (+0000) Subject: net/freeswitch: Set stacksize for freeswitch using ulimit in init script X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=8083efafa7c1bc66aa8811e1597e173f75f820aa net/freeswitch: Set stacksize for freeswitch using ulimit in init script SVN-Revision: 21811 --- diff --git a/net/freeswitch/files/freeswitch.init b/net/freeswitch/files/freeswitch.init index 78f9cb915c..11950568d0 100644 --- a/net/freeswitch/files/freeswitch.init +++ b/net/freeswitch/files/freeswitch.init @@ -14,6 +14,7 @@ start() { [ -f $DEFAULT ] && . $DEFAULT mkdir -p $FS_DIR_DB mkdir -p $FS_DIR_LOG + ulimit -s 240 $FS_DIR/usr/bin/freeswitch $OPTIONS -c & }