From 76f2ae7769df289953a2fef6c031ae48c0b0fd11 Mon Sep 17 00:00:00 2001 From: Nikos Skalkotos Date: Mon, 22 Jul 2013 16:59:34 +0300 Subject: [PATCH] Sleep for 10 secs after you monitor Windows is up When syspreping a Windows image, sleep for 10 seconds before you continue performing the various system preparation tasks. --- image_creator/os_type/windows.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/image_creator/os_type/windows.py b/image_creator/os_type/windows.py index f8e30f6..a7f8e07 100644 --- a/image_creator/os_type/windows.py +++ b/image_creator/os_type/windows.py @@ -249,10 +249,9 @@ class Windows(OSBase): if not self._wait_on_file(monitor, token): raise FatalError("Windows booting timed out.") else: + time.sleep(10) # Just to be sure everything is up self.out.success('done') - time.sleep(5) # Just to be sure everything is up - self.out.output("Disabling automatic logon ...", False) self._disable_autologon() self.out.success('done') @@ -627,6 +626,8 @@ class Windows(OSBase): if rc != 0 and fatal: reason = stderr if len(stderr) else stdout + self.out.output("Command: `%s' failed. Reason: %s" % + (command, reason)) raise FatalError("Command: `%s' failed. Reason: %s" % (command, reason)) -- 1.7.10.4