Index: trunk/packages/sipb-xen-remctl-auto/sipb-xen-remctl-auto/files/usr/sbin/sipb-xen-lvm
===================================================================
--- trunk/packages/sipb-xen-remctl-auto/sipb-xen-remctl-auto/files/usr/sbin/sipb-xen-lvm	(revision 172)
+++ trunk/packages/sipb-xen-remctl-auto/sipb-xen-remctl-auto/files/usr/sbin/sipb-xen-lvm	(revision 174)
@@ -3,5 +3,5 @@
 import sys
 import os.path
-from subprocess import call
+from subprocess import call, PIPE
 
 def check(b):
@@ -16,8 +16,5 @@
 def ensureoff(machine):
     # Make sure the machine is off, but we don't care about errors if it is already off.
-    try:
-        rv = call(["/usr/sbin/xm", "destroy", prefix + machine])
-    except:
-        pass
+    rv = call(["/usr/sbin/xm", "destroy", prefix + machine], stderr=PIPE)
 
 if subcommand == "lvcreate-all":
