Raise the ulimit that the scheduler runs under

Raise the ulimit that the scheduler runs under.  Some of the autoserv
processes it launches more ram (for brief periods of time) due to large
external processes they launch.

Signed-off-by: Gregory Smith <gps@google.com>


git-svn-id: http://test.kernel.org/svn/autotest/trunk@4519 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/utils/autotest.init b/utils/autotest.init
index 136473d..78ed9a8 100755
--- a/utils/autotest.init
+++ b/utils/autotest.init
@@ -22,7 +22,7 @@
   cd /tmp
 
   log_daemon_msg "Starting monitor_db_babysitter"
-  ( ulimit -v 819200 ; \
+  ( ulimit -v 2048000 ; \
     start-stop-daemon --start --quiet --chuid $BECOME_USER \
       --background --exec $BASE_DIR/scheduler/monitor_db_babysitter )
 }