Don't wait for the initscripts to complete.
authorDaniel Hokka Zakrisson <dhokka@cs.princeton.edu>
Sat, 13 Oct 2007 01:04:57 +0000 (01:04 +0000)
committerDaniel Hokka Zakrisson <dhokka@cs.princeton.edu>
Sat, 13 Oct 2007 01:04:57 +0000 (01:04 +0000)
python/vserver.py

index dd3c3be..de8c164 100644 (file)
@@ -456,7 +456,7 @@ class VServer:
                          cmd_args = [cmd[0]] + map(lambda x: x % arg_subst,
                                                    cmd[1:])
                          print >>log, "executing '%s'" % " ".join(cmd_args)
-                         os.spawnvp(os.P_WAIT,cmd[0],cmd_args)
+                         os.spawnvp(os.P_NOWAIT,cmd[0],cmd_args)
                      except:
                          traceback.print_exc()
                          os._exit(1)