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 148)
+++ /trunk/packages/sipb-xen-remctl-auto/sipb-xen-remctl-auto/files/usr/sbin/sipb-xen-lvm	(revision 149)
@@ -20,5 +20,5 @@
 def ensureoff(machine):
     # Make sure the machine is off, but we don't care about errors if it is already off.
-    rv = call(["/usr/sbin/xm", "destroy", prefix + machine]
+    rv = call(["/usr/sbin/xm", "destroy", prefix + machine])
 
 if subcommand == "lvremove":
@@ -28,5 +28,5 @@
         print >>sys.stderr, "Error removing LV %s\n" %(lvname,)
         sys.exit(1)
-else if subcommand == "lvresize":
+elif subcommand == "lvresize":
     size = sys.argv[4]
     ensureoff(machine)
@@ -35,5 +35,5 @@
         print >>sys.stderr, "Error resizing LV %s\n" %(lvname,)
         sys.exit(1)
-else if subcommand == "lvrename":
+elif subcommand == "lvrename":
     newmachine = sys.argv[4]
     newlvname = prefix + newmachine + "_" + disk
@@ -44,5 +44,5 @@
         print >>sys.stderr, "Error renaming LV %s\n" %(lvname,)
         sys.exit(1)
-else if subcommand == "lvcreate":
+elif subcommand == "lvcreate":
     size = sys.argv[4]
     rv = call(["/sbin/lvcreate", "-L", size + "M", "-n", lvname, vg])
@@ -51,5 +51,5 @@
         sys.exit(1)
     
-else if subcommand == "lvcreate-all":
+elif subcommand == "lvcreate-all":
     from sipb_xen_database import *
     import re
