mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-25 18:55:27 -06:00
Improve error message if QEMU daemon isn't running (Ville Skytta)
This commit is contained in:
parent
390e4ea309
commit
20d2565717
1
AUTHORS
1
AUTHORS
@ -22,6 +22,7 @@ Further patches have been submitted by:
|
|||||||
Richard W.M. Jones <rjones-at-redhat-dot-com>
|
Richard W.M. Jones <rjones-at-redhat-dot-com>
|
||||||
Nobuhiro Itou <fj0873gn-at-aa-dot-jp-dot-fujitsu-dot-com>
|
Nobuhiro Itou <fj0873gn-at-aa-dot-jp-dot-fujitsu-dot-com>
|
||||||
Cole Robinson <crobinso-at-redhat-dot-com>
|
Cole Robinson <crobinso-at-redhat-dot-com>
|
||||||
|
Ville Skytta <ville-dot-skytta-at-iki-dot-fi>
|
||||||
|
|
||||||
<...send a patch & get your name here...>
|
<...send a patch & get your name here...>
|
||||||
|
|
||||||
|
@ -89,6 +89,13 @@ class vmmEngine:
|
|||||||
" - A Xen host kernel was booted\n" +
|
" - A Xen host kernel was booted\n" +
|
||||||
" - The Xen service has been started\n"),
|
" - The Xen service has been started\n"),
|
||||||
details)
|
details)
|
||||||
|
elif uri.startswith("qemu:"):
|
||||||
|
dg = vmmErrorDialog (None, 0, gtk.MESSAGE_ERROR,
|
||||||
|
gtk.BUTTONS_CLOSE,
|
||||||
|
_("Unable to open a connection to the QEMU management daemon.\n\n" +
|
||||||
|
"Verify that:\n" +
|
||||||
|
" - The 'libvirt_qemud' daemon has been started\n"),
|
||||||
|
details)
|
||||||
else:
|
else:
|
||||||
dg = vmmErrorDialog (None, 0, gtk.MESSAGE_ERROR,
|
dg = vmmErrorDialog (None, 0, gtk.MESSAGE_ERROR,
|
||||||
gtk.BUTTONS_CLOSE,
|
gtk.BUTTONS_CLOSE,
|
||||||
|
Loading…
Reference in New Issue
Block a user