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