558728377c
f5d709d9-lang-it-1.patch c66098f3-lang-it-2.patch 452a693e-lang-update.patch 6b5106ea-lang-it-ko-fix.patch 9c8ffe51-fix-multiple-warnings-1.patch cb182f7e-skip-authentication-only-for-VNC-with-listen-type-none.patch 0610cd6a-ensure-bool-value-used-for-set_sensitive-call.patch f341352c-remove-redundant-error-string.patch ff3b4dc5-dont-overwrite-install-bootorder.patch 2099a194-reset-guest-domain-to-none-on-domain-creation-error.patch 7aee124d-fix-multiple-warnings-2.patch - Check for SLE15 and Leap 15 bsc#1035779 virtman-default-guest-from-host-os.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=348
46 lines
1.7 KiB
Diff
46 lines
1.7 KiB
Diff
Subject: cli: Don't overwrite install bootorder with manual --boot (bz 1438946)
|
|
From: Cole Robinson crobinso@redhat.com Tue Apr 4 18:22:15 2017 -0400
|
|
Date: Tue Apr 4 18:22:15 2017 -0400:
|
|
Git: ff3b4dc5b0b21393dbccc0f5f691b17bf1a761bd
|
|
|
|
--boot should be for post-install bootorder only
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1438946
|
|
|
|
diff --git a/tests/cli-test-xml/compare/virt-install-singleton-config-2.xml b/tests/cli-test-xml/compare/virt-install-singleton-config-2.xml
|
|
index 5fa0f24e..914403e6 100644
|
|
--- a/tests/cli-test-xml/compare/virt-install-singleton-config-2.xml
|
|
+++ b/tests/cli-test-xml/compare/virt-install-singleton-config-2.xml
|
|
@@ -60,9 +60,6 @@
|
|
<os>
|
|
<type arch="x86_64">hvm</type>
|
|
<loader>/foo/bar</loader>
|
|
- <boot dev="cdrom"/>
|
|
- <boot dev="fd"/>
|
|
- <boot dev="hd"/>
|
|
<boot dev="network"/>
|
|
<smbios mode="sysinfo"/>
|
|
<bootmenu enable="no"/>
|
|
diff --git a/virtinst/installer.py b/virtinst/installer.py
|
|
index 50c72c73..dd2a593e 100644
|
|
--- a/virtinst/installer.py
|
|
+++ b/virtinst/installer.py
|
|
@@ -113,13 +113,13 @@ class Installer(object):
|
|
if isinstall and not self.has_install_phase():
|
|
return
|
|
|
|
- bootorder = self._build_boot_order(isinstall, guest)
|
|
-
|
|
- if not guest.os.bootorder:
|
|
+ bootorder = guest.os.bootorder
|
|
+ if isinstall or not bootorder:
|
|
# Per device <boot order> is not compatible with os/boot.
|
|
if not any(d.boot.order for d in guest.get_all_devices()):
|
|
- guest.os.bootorder = bootorder
|
|
+ bootorder = self._build_boot_order(isinstall, guest)
|
|
|
|
+ guest.os.bootorder = bootorder
|
|
if not isinstall:
|
|
return
|
|
|