From c653f7918018a8d4aced024824110c462541654d Mon Sep 17 00:00:00 2001 From: cshore Date: Tue, 15 Jun 2010 22:20:49 +0000 Subject: [PATCH] net/freeswitch: Set stacksize for freeswitch using ulimit in init script git-svn-id: svn://svn.openwrt.org/openwrt/packages@21811 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- net/freeswitch/files/freeswitch.init | 1 + 1 file changed, 1 insertion(+) diff --git a/net/freeswitch/files/freeswitch.init b/net/freeswitch/files/freeswitch.init index 78f9cb915..11950568d 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 & }