diff -Nru virt-manager-0.9.1/debian/changelog virt-manager-0.9.1/debian/changelog --- virt-manager-0.9.1/debian/changelog 2012-04-06 11:31:38.000000000 -0400 +++ virt-manager-0.9.1/debian/changelog 2012-05-24 15:36:58.000000000 -0400 @@ -1,3 +1,13 @@ +virt-manager (0.9.1-1ubuntu5.1) precise-proposed; urgency=low + + * debian/patches/fix_listen_address.patch: updated again to prevent + regression when the remote server has a listen attribute that specifies + "0.0.0.0". (LP: #837275) + * debian/patches/more_helpful_error_message.patch: remove superfluous + line and extra comma to fix error dialog. (LP: #998724) + + -- Marc Deslauriers Thu, 24 May 2012 15:35:48 -0400 + virt-manager (0.9.1-1ubuntu5) precise; urgency=low * debian/patches/fix_listen_address.patch: updated to prevent regression diff -Nru virt-manager-0.9.1/debian/patches/fix_listen_address.patch virt-manager-0.9.1/debian/patches/fix_listen_address.patch --- virt-manager-0.9.1/debian/patches/fix_listen_address.patch 2012-04-06 11:14:31.000000000 -0400 +++ virt-manager-0.9.1/debian/patches/fix_listen_address.patch 2012-05-24 15:33:52.000000000 -0400 @@ -12,7 +12,7 @@ gport = int(gport) gtype = gdev.type gaddr = "127.0.0.1" -+ if gdev.listen != None and gdev.listen != "127.0.0.1": ++ if gdev.listen not in [None, "127.0.0.1", "0.0.0.0"]: + gaddr = gdev.listen + connhost = gaddr + if gport != None: diff -Nru virt-manager-0.9.1/debian/patches/more_helpful_error_message.patch virt-manager-0.9.1/debian/patches/more_helpful_error_message.patch --- virt-manager-0.9.1/debian/patches/more_helpful_error_message.patch 2012-02-11 11:28:58.000000000 -0500 +++ virt-manager-0.9.1/debian/patches/more_helpful_error_message.patch 2012-05-24 15:35:27.000000000 -0400 @@ -1,17 +1,16 @@ === modified file 'src/virtManager/manager.py' Index: virt-manager-0.9.1/src/virtManager/manager.py =================================================================== ---- virt-manager-0.9.1.orig/src/virtManager/manager.py 2012-01-31 18:14:18.000000000 -0500 -+++ virt-manager-0.9.1/src/virtManager/manager.py 2012-02-11 11:28:46.067954750 -0500 -@@ -673,7 +673,11 @@ +--- virt-manager-0.9.1.orig/src/virtManager/manager.py 2012-05-24 15:33:03.548592798 -0400 ++++ virt-manager-0.9.1/src/virtManager/manager.py 2012-05-24 15:34:54.844595647 -0400 +@@ -673,7 +673,10 @@ "regular user. Try running as root.\n\n") else: msg += _("Verify that:\n" + - " - The 'libvirtd' daemon has been started") -+ " - The 'libvirtd' daemon has been started\n" + + " - The 'libvirt-bin' package is installed\n" + + " - The 'libvirtd' daemon has been started" + -+ (conn.is_qemu_system() and "\n - You are member of the 'libvirtd' group" or '')), ++ (conn.is_qemu_system() and "\n - You are member of the 'libvirtd' group" or '')) + for hint in hints: msg += hint