import sys
import os.path
from subprocess import call, PIPE, Popen
+from invirt.config import structs as config
def check(b):
if not b:
stderr=PIPE)
if subcommand == "lvcreate-all":
- from sipb_xen_database import *
+ from invirt import database
import re
- connect('postgres://sipb-xen@sipb-xen-dev.mit.edu/sipb_xen')
+ database.connect()
for d in Disk.select():
check(re.match('^[A-Za-z0-9]+$', d.guest_device_name))
machine = Machine.get(d.machine_id)