From: Eric Price Date: Tue, 9 Oct 2007 06:59:00 +0000 (-0400) Subject: Tim, please run python on your code to verify that it parses properly. X-Git-Tag: sipb-xen-remctl-auto/1.0.4~7 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-remote.git/commitdiff_plain/e6999851f7528894db154d71e9bcbc11c9b3e492?ds=sidebyside Tim, please run python on your code to verify that it parses properly. svn path=/trunk/packages/sipb-xen-remctl-auto/sipb-xen-remctl-auto/; revision=149 --- diff --git a/files/usr/sbin/sipb-xen-lvm b/files/usr/sbin/sipb-xen-lvm index bc375a7..72d3bdb 100755 --- a/files/usr/sbin/sipb-xen-lvm +++ b/files/usr/sbin/sipb-xen-lvm @@ -19,7 +19,7 @@ lvpath = "/dev/" + vg + "/" + lvname 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": rv = call(["/sbin/lvremove", "--force", lvpath]) @@ -27,14 +27,14 @@ if subcommand == "lvremove": if rv != 0: 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) rv = call(["/sbin/lvresize", "-L", size + "M", lvpath]) if rv != 0: 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 ensureoff(machine) @@ -43,14 +43,14 @@ else if subcommand == "lvrename": if rv != 0: 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]) if rv != 0: print >>sys.stderr, "Error creating LV %s\n" %(lvname,) sys.exit(1) -else if subcommand == "lvcreate-all": +elif subcommand == "lvcreate-all": from sipb_xen_database import * import re connect('postgres://sipb-xen@sipb-xen-dev.mit.edu/sipb_xen')