Improve error message if QEMU daemon isn't running (Ville Skytta)

This commit is contained in:
Daniel P. Berrange 2007-07-04 00:48:32 -04:00
parent 390e4ea309
commit 20d2565717
2 changed files with 8 additions and 0 deletions

View File

@ -22,6 +22,7 @@ Further patches have been submitted by:
Richard W.M. Jones <rjones-at-redhat-dot-com>
Nobuhiro Itou <fj0873gn-at-aa-dot-jp-dot-fujitsu-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...>

View File

@ -89,6 +89,13 @@ class vmmEngine:
" - A Xen host kernel was booted\n" +
" - The Xen service has been started\n"),
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:
dg = vmmErrorDialog (None, 0, gtk.MESSAGE_ERROR,
gtk.BUTTONS_CLOSE,