bac3f6bcbd
virt-manager virtinst-vol-default-nocow.patch - bsc#960724 - virt-manager fails to create Virtual machines on a CentOS7 host virtinst-set-qemu-emulator.patch - Upstream bug fix 89c3638b-fix-detection-that-libvirtd-is-stopped.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=290
17 lines
889 B
Diff
17 lines
889 B
Diff
Use the correct systemd to start libvirt.
|
|
Index: virt-manager-1.3.2/virtManager/packageutils.py
|
|
===================================================================
|
|
--- virt-manager-1.3.2.orig/virtManager/packageutils.py
|
|
+++ virt-manager-1.3.2/virtManager/packageutils.py
|
|
@@ -143,8 +143,8 @@ def start_libvirtd():
|
|
logging.debug("libvirtd not running, asking system-config-services "
|
|
"to start it")
|
|
scs = Gio.DBusProxy.new_sync(bus, 0, None,
|
|
- "org.fedoraproject.Config.Services",
|
|
- "/org/fedoraproject/Config/Services/systemd1",
|
|
+ "org.freedesktop.systemd1",
|
|
+ "/org/freedesktop/systemd1",
|
|
"org.freedesktop.systemd1.Manager", None)
|
|
scs.StartUnit("(ss)", unitname, "replace")
|
|
time.sleep(2)
|