From fc43608da9b37a90f49b3b270f31c9ceb3874b66 Mon Sep 17 00:00:00 2001 From: Amit Mahajan Date: Sun, 8 Nov 2009 02:15:48 +0530 Subject: [PATCH] Error in number of containers corrected --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index f75aea5..28d75d6 100755 --- a/configure.py +++ b/configure.py @@ -23,7 +23,7 @@ def autogen_rules_file(options, args): # Prepare default if number of containers not supplied if not options.ncont: - options.ncont = 1 + options.ncont = 4 print "Max container count not supplied (-n), using %d as default." % options.ncont return generate_container_cml(options.arch, options.ncont)