From d2b042ab7fbaf15790533d0e74b58676961bd052 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Mon, 10 Oct 2011 15:14:48 +0200 Subject: [PATCH] remove parallel arg, always change logoutput Signed-off-by: Nico Schottelius --- bin/cdist | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/cdist b/bin/cdist index 61dad1db..50e66697 100755 --- a/bin/cdist +++ b/bin/cdist @@ -122,8 +122,7 @@ def configinstall(args, mode): c = mode(host, initial_manifest=args.manifest, base_path=args.cdist_home, - debug=args.debug, - parallel=True) + debug=args.debug) if args.parallel: log.debug("Creating child process for %s", host) process[host] = multiprocessing.Process(target=c.deploy_and_cleanup)