From: Nikos Skalkotos Date: Mon, 22 Jul 2013 13:59:34 +0000 (+0300) Subject: Sleep for 10 secs after you monitor Windows is up X-Git-Tag: 0.5~1^2~13^2~14 X-Git-Url: https://code.grnet.gr/git/snf-image-creator/commitdiff_plain/76f2ae7769df289953a2fef6c031ae48c0b0fd11 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. --- 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))