47ffb48dd8
virt-manager-1.1.0.tar.bz2 * Switch to libosinfo as OS metadata database (Giuseppe Scrivano) * Use libosinfo for OS detection from CDROM media labels (Giuseppe Scrivano) * Use libosinfo for improved OS defaults, like recommended disk size (Giuseppe Scrivano) * virt-image tool has been removed, as previously announced * Enable Hyper-V enlightenments for Windows VMs * Revert virtio-console default, back to plain serial console * Experimental q35 option in new VM ‘customize’ dialog * UI for virtual network QoS settings (Giuseppe Scrivano) * virt-install: –disk discard= support (Jim Minter) * addhardware: Add spiceport UI (Marc-André Lureau) * virt-install: –events on_poweroff etc. support (Chen Hanxiao) * cli –network portgroup= support and UI support * cli –boot initargs= and UI support * addhardware: allow setting controller model (Chen Hanxiao) * virt-install: support setting hugepage options (Chen Hanxiao) - Drop upstream patches and old tarball virt-manager-1.0.1.tar.bz2 5332ee4d-enable-media-detection-for-ISO-images.patch 53341e7e-hide-hardware-removal-for-non-devices.patch 53342f31-set-right-ip-address-for-ipv6.patch 53375bad-raise-value-error-when-no-ipaddr-set.patch 53388de2-show-port-number-for-active-autoport-VM.patch 53397ae0-check-ip-address-format.patch 53399b45-hook-into-domain-balloon-event.patch 533d708d-fix-showing-vcpus-values.patch 533d7602-fix-changing-graphics-type.patch 533d7be7-clarify-iscsi-IQN-fields.patch 5345682c-addstorage-remove-whitespace-for-storage-path.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=207
101 lines
5.0 KiB
Diff
101 lines
5.0 KiB
Diff
Index: virt-manager-1.1.0/setup.py
|
|
===================================================================
|
|
--- virt-manager-1.1.0.orig/setup.py
|
|
+++ virt-manager-1.1.0/setup.py
|
|
@@ -303,8 +303,11 @@ class configure(Command):
|
|
("pkgversion=", None, "user specified version-id"),
|
|
("qemu-user=", None,
|
|
"user libvirt uses to launch qemu processes (default=root)"),
|
|
- ("libvirt-package-names=", None,
|
|
- "list of libvirt distro packages virt-manager will check for on "
|
|
+ ("libvirt-kvm-package-names=", None,
|
|
+ "list of libvirt kvm distro packages virt-manager will check for on "
|
|
+ "first run. comma separated string (default=none)"),
|
|
+ ("libvirt-xen-package-names=", None,
|
|
+ "list of libvirt xen distro packages virt-manager will check for on "
|
|
"first run. comma separated string (default=none)"),
|
|
("kvm-package-names=", None,
|
|
"recommended kvm packages virt-manager will check for on first run "
|
|
@@ -330,7 +333,8 @@ class configure(Command):
|
|
self.prefix = sysprefix
|
|
self.pkgversion = None
|
|
self.qemu_user = None
|
|
- self.libvirt_package_names = None
|
|
+ self.libvirt_kvm_package_names = None
|
|
+ self.libvirt_xen_package_names = None
|
|
self.kvm_package_names = None
|
|
self.askpass_package_names = None
|
|
self.preferred_distros = None
|
|
@@ -347,8 +351,10 @@ class configure(Command):
|
|
template += "pkgversion = %s\n" % self.pkgversion
|
|
if self.qemu_user is not None:
|
|
template += "default_qemu_user = %s\n" % self.qemu_user
|
|
- if self.libvirt_package_names is not None:
|
|
- template += "libvirt_packages = %s\n" % self.libvirt_package_names
|
|
+ if self.libvirt_kvm_package_names is not None:
|
|
+ template += "libvirt_kvm_packages = %s\n" % self.libvirt_kvm_package_names
|
|
+ if self.libvirt_xen_package_names is not None:
|
|
+ template += "libvirt_xen_packages = %s\n" % self.libvirt_xen_package_names
|
|
if self.kvm_package_names is not None:
|
|
template += "hv_packages = %s\n" % self.kvm_package_names
|
|
if self.askpass_package_names is not None:
|
|
Index: virt-manager-1.1.0/virtcli/cliconfig.py
|
|
===================================================================
|
|
--- virt-manager-1.1.0.orig/virtcli/cliconfig.py
|
|
+++ virt-manager-1.1.0/virtcli/cliconfig.py
|
|
@@ -92,6 +92,7 @@ stable_defaults = bool(int(_get_param("s
|
|
preferred_distros = _split_list(_get_param("preferred_distros", ""))
|
|
hv_packages = _split_list(_get_param("hv_packages", ""))
|
|
askpass_package = _split_list(_get_param("askpass_packages", ""))
|
|
-libvirt_packages = _split_list(_get_param("libvirt_packages", ""))
|
|
+libvirt_kvm_packages = _split_list(_get_param("libvirt_kvm_packages", ""))
|
|
+libvirt_xen_packages = _split_list(_get_param("libvirt_xen_packages", ""))
|
|
default_graphics = _get_param("default_graphics", "spice")
|
|
with_bhyve = bool(int(_get_param("with_bhyve", "0")))
|
|
Index: virt-manager-1.1.0/virtManager/config.py
|
|
===================================================================
|
|
--- virt-manager-1.1.0.orig/virtManager/config.py
|
|
+++ virt-manager-1.1.0/virtManager/config.py
|
|
@@ -158,7 +158,8 @@ class vmmConfig(object):
|
|
self.stable_defaults = cliconfig.stable_defaults
|
|
self.preferred_distros = cliconfig.preferred_distros
|
|
self.hv_packages = cliconfig.hv_packages
|
|
- self.libvirt_packages = cliconfig.libvirt_packages
|
|
+ self.libvirt_kvm_packages = cliconfig.libvirt_kvm_packages
|
|
+ self.libvirt_xen_packages = cliconfig.libvirt_xen_packages
|
|
self.askpass_package = cliconfig.askpass_package
|
|
self.default_graphics_from_config = cliconfig.default_graphics
|
|
self.with_bhyve = cliconfig.with_bhyve
|
|
Index: virt-manager-1.1.0/virtManager/engine.py
|
|
===================================================================
|
|
--- virt-manager-1.1.0.orig/virtManager/engine.py
|
|
+++ virt-manager-1.1.0/virtManager/engine.py
|
|
@@ -193,21 +193,17 @@ class vmmEngine(vmmGObject):
|
|
|
|
ret = None
|
|
try:
|
|
- libvirt_packages = self.config.libvirt_packages
|
|
- packages = self.config.hv_packages + libvirt_packages
|
|
-
|
|
+ tryuri = vmmConnect.default_uri(always_system=True)
|
|
+ if tryuri and tryuri.startswith('xen'):
|
|
+ packages = self.config.libvirt_xen_packages
|
|
+ else:
|
|
+ packages = self.config.libvirt_kvm_packages + self.config.hv_packages
|
|
ret = packageutils.check_packagekit(manager, manager.err, packages)
|
|
except:
|
|
logging.exception("Error talking to PackageKit")
|
|
|
|
- if ret:
|
|
- tryuri = "qemu:///system"
|
|
- else:
|
|
- tryuri = vmmConnect.default_uri(always_system=True)
|
|
-
|
|
if tryuri is None:
|
|
- manager.set_startup_error(msg)
|
|
- return
|
|
+ tryuri = "qemu:///system"
|
|
|
|
warnmsg = _("The 'libvirtd' service will need to be started.\n\n"
|
|
"After that, virt-manager will connect to libvirt on\n"
|