From ceda7a5dbfcd9b94bbe65916e7f41f213d9d3629 Mon Sep 17 00:00:00 2001 From: Pavel Hrdina Date: Tue, 17 Jan 2017 15:34:14 +0100 Subject: [PATCH] virt-manager: don't autostart other connection if --show-* was specified Broken by commit a9bc56add3. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1377244 Signed-off-by: Pavel Hrdina --- virt-manager | 3 +++ 1 file changed, 3 insertions(+) diff --git a/virt-manager b/virt-manager index 81b0a5a9..b3a8f691 100755 --- a/virt-manager +++ b/virt-manager @@ -263,6 +263,9 @@ def main(): if show_window and options.uri is None: raise RuntimeError("can't use --show-* options without --connect") + if show_window: + options.skip_autostart = True + # Hook libvirt events into glib main loop LibvirtGLib.init(None) LibvirtGLib.event_register()