f71f619bc9
virt-manager-1.2.0.tar.bz2 virtinst-default-xen-to-qcow2-format.patch * OVMF/AAVMF Support (Laszlo Ersek, Giuseppe Scrivano, Cole Robinson) * Improved support for AArch64 qemu/kvm * virt-install: Support –disk type=network parameters * virt-install: Make –disk just work * virt-install: Add –disk sgio= option (Giuseppe Scrivano) * addhardware: default to an existing bus when adding a new disk (Giuseppe Scrivano) * virt-install: Add –input device option * virt-manager: Unify storagebrowser and storage details functionality * virt-manager: allow setting a custom connection row name * virt-install: Support –hostdev scsi passthrough * virt-install: Fill in a bunch of –graphics spice options * Disable spice image compression for new local VMs * virt-manager: big reworking of the migration dialog - Dropped tarball and patches virt-manager-1.1.0.tar.bz2 0b391fe9-Gtk-30.patch 20fe2873-check-for-empty-network-name.patch 24faf867-ignore-error-403-on-directories.patch 65f7017e-createnet-fix.patch activate-default-console.patch ce74cd77-connection-state-tick-updates-lock.patch virtinst-ppc64le.patch virtinst-supported-disk-formats.patch virtinst-support-suse-distros.patch virt-manager-1.1.0.tar.bz2 virtman-default-lxc-uri.patch virtman-stable-os-support.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=226
75 lines
3.5 KiB
Diff
75 lines
3.5 KiB
Diff
Enhancement to switch the label from 'Kickstart' to 'Autoyast' when
|
|
a suse distro is selected.
|
|
Index: virt-manager-1.1.0/virtManager/create.py
|
|
===================================================================
|
|
--- virt-manager-1.1.0.orig/virtManager/create.py
|
|
+++ virt-manager-1.1.0/virtManager/create.py
|
|
@@ -1242,11 +1242,34 @@ class vmmCreate(vmmGObjectUI):
|
|
self.populate_os_type_model()
|
|
return
|
|
|
|
+ def _update_kickstart_label(self):
|
|
+ # Update label based on os version selected to either kickstart or autoyast
|
|
+ combo = self.widget("install-os-version")
|
|
+ if combo.get_active() != -1:
|
|
+ tree_iter = combo.get_active_iter()
|
|
+ if tree_iter != None:
|
|
+ model = combo.get_model()
|
|
+ unused, os_name = model[tree_iter][:2]
|
|
+ else:
|
|
+ entry = combo.get_child()
|
|
+ os_name = entry.get_text()
|
|
+ if os_name:
|
|
+ os_name = os_name.lower()
|
|
+ label = self.widget("kickstart-url-label")
|
|
+ if label and os_name:
|
|
+ if os_name.startswith('opensuse') or os_name.startswith('suse') or os_name.startswith('novell'):
|
|
+ label.set_text("AutoYaST URL:")
|
|
+ else:
|
|
+ label.set_text("Kickstart URL:")
|
|
+ label.show()
|
|
+
|
|
def change_os_version(self, box):
|
|
show_all = uiutil.get_list_selection(box, 3)
|
|
if not show_all:
|
|
return
|
|
|
|
+ self._update_kickstart_label()
|
|
+
|
|
# 'show all OS' was clicked
|
|
# Get previous type to reselect it later
|
|
type_row = self._selected_os_row()
|
|
@@ -1611,7 +1634,10 @@ class vmmCreate(vmmGObjectUI):
|
|
if extra:
|
|
extraargs += extra
|
|
if ks:
|
|
- extraargs += " ks=%s" % ks
|
|
+ if variant.startswith('opensuse') or variant.startswith('sle') or variant.startswith('oes'):
|
|
+ extraargs += " autoyast=%s" % ks
|
|
+ else:
|
|
+ extraargs += " ks=%s" % ks
|
|
|
|
if extraargs:
|
|
self.guest.installer.extraargs = extraargs
|
|
@@ -2053,6 +2079,7 @@ class vmmCreate(vmmGObjectUI):
|
|
dl = self.set_os_val(self.widget("install-os-type"), distro_type)
|
|
vl = self.set_os_val(self.widget("install-os-version"), distro_var)
|
|
self.set_distro_labels(dl, vl)
|
|
+ self._update_kickstart_label()
|
|
|
|
def check_detection(self, idx, forward):
|
|
results = None
|
|
Index: virt-manager-1.1.0/ui/create.ui
|
|
===================================================================
|
|
--- virt-manager-1.1.0.orig/ui/create.ui
|
|
+++ virt-manager-1.1.0/ui/create.ui
|
|
@@ -843,7 +843,7 @@ bar</property>
|
|
<property name="column_spacing">6</property>
|
|
<property name="row_spacing">4</property>
|
|
<child>
|
|
- <object class="GtkLabel" id="label25">
|
|
+ <object class="GtkLabel" id="kickstart-url-label">
|
|
<property name="visible">True</property>
|
|
<property name="can_focus">False</property>
|
|
<property name="label" translatable="yes">Kickstart URL:</property>
|