for disk in machine.disks:
lvcreate(machine, disk)
+def getswap(disksize, memsize):
+ """Returns the recommended swap partition size."""
+ return int(min(disksize / 4, memsize * 1.5))
+
+def lvinstall(machine, autoinstall):
+ disksize = machine.disks[0].size
+ memsize = machine.memory
+ imagesize = disksize - getswap(disksize, memsize)
+ ip = machine.nics[0].ip
+ remctl('web', 'install', machine.name, autoinstall.distribution,
+ autoinstall.mirror, str(imagesize), ip)
+
def lvcopy(machine_orig_name, machine, rootpw):
"""Copy a golden image onto a machine's disk"""
remctl('web', 'lvcopy', machine_orig_name, machine.name, rootpw)
else:
out, err = remctl('control', machine.name, 'create',
err=True)
- if 'already exists' in out:
+ if 'already running' in err:
raise InvalidInput('action', 'create',
'VM %s is already on' % machine.name)
elif err:
raise CodeError('"%s" on "control %s create %s'
% (err, machine.name, cdtype))
-def createVm(username, state, owner, contact, name, description, memory, disksize, machine_type, cdrom, clone_from):
+def createVm(username, state, owner, contact, name, description, memory, disksize, machine_type, cdrom, autoinstall):
"""Create a VM and put it in the database"""
# put stuff in the table
transaction = ctx.current.create_transaction()
transaction.rollback()
raise
makeDisks(machine)
- if clone_from:
- lvcopy(clone_from, machine, 'password')
+ if autoinstall:
+ lvinstall(machine, autoinstall)
# tell it to boot with cdrom
bootMachine(machine, cdrom)
return machine
if 'Unknown command' in err_string:
raise CodeError("ERROR in remctl list-long %s is not registered" %
(machine.name,))
- elif 'does not exist' in err_string:
+ elif 'is not on' in err_string:
return None
elif err_string:
raise CodeError("ERROR in remctl list-long %s: %s" %
status = parseStatus(value_string)
return status
+def listHost(machine):
+ """Return the host a machine is running on"""
+ out, err = remctl('control', machine.name, 'listhost', err=True)
+ if err:
+ return None
+ return out.strip()
+
def deleteVM(machine):
"""Delete a VM."""
remctl('control', machine.name, 'destroy', err=True)
out, err = remctl('control', machine.name, 'reboot',
err=True)
if err:
- if re.match("Error: Domain '.*' does not exist.", err):
+ if re.match("machine '.*' is not on", err):
raise InvalidInput("action", "reboot",
"Machine is not on")
else:
elif action == 'Power off':
out, err = remctl('control', machine.name, 'destroy', err=True)
if err:
- if re.match("Error: Domain '.*' does not exist.", err):
+ if re.match("machine '.*' is not on", err):
raise InvalidInput("action", "Power off",
"Machine is not on.")
else:
elif action == 'Shutdown':
out, err = remctl('control', machine.name, 'shutdown', err=True)
if err:
- if re.match("Error: Domain '.*' does not exist.", err):
+ if re.match("machine '.*' is not on", err):
raise InvalidInput("action", "Shutdown",
"Machine is not on.")
else: