287c87ccd9
'virtio1.0-input' 1d2cd306-Fix-incorrect-usage-of-virtio-input.patch - bsc#1005848 - KVM: guest can not be started on top of SLES12SP1 KVM host ppc64 5a11cf07-virt-manager-generates-invalid-guest-XML.patch - Upstream bug fixes 617b9271-dont-return-virtio1.0-net-as-valid-device-name.patch 7962672c-fix-error-checking-extra_args.patch b4858842-fix-bad-version-check-regression.patch f07a3021-fix-wait-to-behave-like-noautoconsole.patch - bsc#1005861 - virt-manager create new machine dialog box too small to display system type virtinst-expand-combobox.patch - fate#314135: Support PVSCSI on XEN and VirtioSCSI on KVM - - fate#313076: HBA passthrough for kvm OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=338
23 lines
836 B
Diff
23 lines
836 B
Diff
Subject: virt-install: fix --wait=0 to behave like --noautoconsole
|
|
From: Pavel Hrdina phrdina@redhat.com Wed Jan 18 13:11:43 2017 +0100
|
|
Date: Wed Jan 18 13:11:43 2017 +0100:
|
|
Git: f07a3021d99298e3b157f6c18b880dcb3ac19b62
|
|
|
|
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1371781
|
|
|
|
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
|
|
|
|
Index: virt-manager-1.4.0/virt-install
|
|
===================================================================
|
|
--- virt-manager-1.4.0.orig/virt-install
|
|
+++ virt-manager-1.4.0/virt-install
|
|
@@ -647,7 +647,7 @@ def build_guest_instance(conn, options):
|
|
###########################
|
|
|
|
def start_install(guest, options):
|
|
- if options.wait:
|
|
+ if options.wait is not None:
|
|
wait_on_install = True
|
|
wait_time = options.wait * 60
|
|
if "VIRTINST_TEST_SUITE" in os.environ and wait_time:
|