From: Evan Broder Date: Sat, 25 Oct 2008 18:12:06 +0000 (-0400) Subject: Don't connect to the database in invirt-update-conserver - it's not used X-Git-Tag: invirt-console-host/0.0.5^0 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-console.git/commitdiff_plain/f57390e3e83bdbd14fe44395b452c030787ddd45?ds=sidebyside Don't connect to the database in invirt-update-conserver - it's not used svn path=/trunk/packages/invirt-console-host/; revision=1246 --- diff --git a/debian/changelog b/debian/changelog index 04090ad..3621991 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +invirt-console-host (0.0.5) unstable; urgency=low + + * invirt-console-host doesn't use the database anymore, so don't connect + to it + + -- Evan Broder Sat, 25 Oct 2008 14:09:03 -0400 + invirt-console-host (0.0.4) unstable; urgency=low * Kill DEB_AUTO_UPDATE_DEBIAN_CONTROL diff --git a/files/usr/sbin/invirt-update-conserver b/files/usr/sbin/invirt-update-conserver index f657c08..f87ae6c 100755 --- a/files/usr/sbin/invirt-update-conserver +++ b/files/usr/sbin/invirt-update-conserver @@ -1,13 +1,10 @@ #!/usr/bin/python -import sipb_xen_database import subprocess import os import socket from invirt.config import structs as config -sipb_xen_database.connect(config.db.uri) - def live_vms(): p = subprocess.Popen(['/usr/sbin/xm', 'list'], stdout=subprocess.PIPE) p.wait()