for disk in machine.disks:
lvcreate(machine, disk)
+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)
+
def bootMachine(machine, cdtype):
"""Boot a machine with a given boot CD.
"""Unregister a machine to not be controlled by the web interface"""
remctl('web', 'unregister', machine.name)
-def createVm(owner, contact, name, memory, disk_size, is_hvm, cdrom):
+def createVm(owner, contact, name, memory, disk_size, is_hvm, cdrom, clone_from):
"""Create a VM and put it in the database"""
# put stuff in the table
transaction = ctx.current.create_transaction()
raise
registerMachine(machine)
makeDisks(machine)
+ if clone_from:
+ lvcopy(clone_from, machine, 'password')
# tell it to boot with cdrom
bootMachine(machine, cdrom)
return machine