Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-vm for openSUSE:Factory checked in at 2023-05-12 20:34:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-vm (Old) and /work/SRC/openSUSE:Factory/.yast2-vm.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-vm" Fri May 12 20:34:25 2023 rev:90 rq:1086174 version:4.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-vm/yast2-vm.changes 2023-03-04 22:44:07.264013241 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-vm.new.1533/yast2-vm.changes 2023-05-12 20:35:27.601264892 +0200 @@ -1,0 +2,8 @@ +Thu Apr 20 15:22:54 MDT 2023 - [email protected] + +- The libvirtd daemon is deprecated and is going away. + The replacements are virtqemud for KVM/qemu and virtxend for Xen. + (bsc#1210572) +- 4.6.1 + +------------------------------------------------------------------- Old: ---- yast2-vm-4.6.0.tar.bz2 New: ---- yast2-vm-4.6.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-vm.spec ++++++ --- /var/tmp/diff_new_pack.VABGQj/_old 2023-05-12 20:35:28.325268870 +0200 +++ /var/tmp/diff_new_pack.VABGQj/_new 2023-05-12 20:35:28.329268892 +0200 @@ -17,7 +17,7 @@ Name: yast2-vm -Version: 4.6.0 +Version: 4.6.1 Release: 0 Summary: Configure Hypervisor and Tools for Xen and KVM License: GPL-2.0-only ++++++ yast2-vm-4.6.0.tar.bz2 -> yast2-vm-4.6.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-vm-4.6.0/package/yast2-vm.changes new/yast2-vm-4.6.1/package/yast2-vm.changes --- old/yast2-vm-4.6.0/package/yast2-vm.changes 2023-03-03 16:04:03.000000000 +0100 +++ new/yast2-vm-4.6.1/package/yast2-vm.changes 2023-05-11 08:44:51.000000000 +0200 @@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Thu Apr 20 15:22:54 MDT 2023 - [email protected] + +- The libvirtd daemon is deprecated and is going away. + The replacements are virtqemud for KVM/qemu and virtxend for Xen. + (bsc#1210572) +- 4.6.1 + +------------------------------------------------------------------- Fri Mar 03 14:44:07 UTC 2023 - Ladislav Slezák <[email protected]> - Bump version to 4.6.0 (bsc#1208913) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-vm-4.6.0/package/yast2-vm.spec new/yast2-vm-4.6.1/package/yast2-vm.spec --- old/yast2-vm-4.6.0/package/yast2-vm.spec 2023-03-03 16:04:03.000000000 +0100 +++ new/yast2-vm-4.6.1/package/yast2-vm.spec 2023-05-11 08:44:51.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package yast2-vm # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: yast2-vm -Version: 4.6.0 +Version: 4.6.1 Release: 0 Summary: Configure Hypervisor and Tools for Xen and KVM License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-vm-4.6.0/src/modules/VirtConfig.rb new/yast2-vm-4.6.1/src/modules/VirtConfig.rb --- old/yast2-vm-4.6.0/src/modules/VirtConfig.rb 2023-03-03 16:04:03.000000000 +0100 +++ new/yast2-vm-4.6.1/src/modules/VirtConfig.rb 2023-05-11 08:44:51.000000000 +0200 @@ -434,13 +434,28 @@ # Force AppArmor to reload the profiles reloadApparmor - # Enable and start the libvirtd daemon for both KVM and Xen - cmd = "systemctl enable libvirtd.service" - Builtins.y2milestone("Enable libvirtd.service: %1", cmd) - SCR.Execute(path(".target.bash"), cmd) - cmd = "systemctl start libvirtd.service" - Builtins.y2milestone("Start libvirtd.service: %1", cmd) - SCR.Execute(path(".target.bash"), cmd) + # Enable and start the libvirt virtqemud daemon for KVM + if install_kvm + cmd = "systemctl enable virtqemud.service" + Builtins.y2milestone("Enable virtqemud.service: %1", cmd) + SCR.Execute(path(".target.bash"), cmd) + if Arch.is_xen == false + cmd = "systemctl start virtqemud.service" + Builtins.y2milestone("Start virtqemud.service: %1", cmd) + SCR.Execute(path(".target.bash"), cmd) + end + end + # Enable and start the libvirt virtxend daemon for Xen + if install_xen + cmd = "systemctl enable virtxend.service" + Builtins.y2milestone("Enable virtxend.service: %1", cmd) + SCR.Execute(path(".target.bash"), cmd) + if Arch.is_xen == true + cmd = "systemctl start virtxend.service" + Builtins.y2milestone("Start virtxend.service: %1", cmd) + SCR.Execute(path(".target.bash"), cmd) + end + end # Enable and start the virtlogd socket (libvirt >= 1.3.0) for both KVM and Xen cmd = "systemctl enable virtlogd.socket"
