cdrom = fields.getfirst('cdrom')
if cdrom is not None and not CDROM.get(cdrom):
raise CodeError("Invalid cdrom type '%s'" % cdrom)
+
+ clone_from = fields.getfirst('clone_from')
+ if clone_from and clone_from != 'ice3':
+ raise CodeError("Invalid clone image '%s'" % clone_from)
+
return dict(contact=user, name=name, memory=memory, disk_size=disk_size,
- owner=owner, is_hvm=is_hvm, cdrom=cdrom)
+ owner=owner, is_hvm=is_hvm, cdrom=cdrom, clone_from=clone_from)
def create(user, fields):
"""Handler for create requests."""
return templates.list(searchList=[d])
elif back == 'info':
machine = validation.testMachineId(user, fields.getfirst('machine_id'))
- d = infoDict(user, machine)
- d['result'] = result
- return templates.info(searchList=[d])
+ return ({'Status': '302',
+ 'Location': '/info?machine_id=%d' % machine.machine_id},
+ "You shouldn't see this message.")
else:
raise InvalidInput('back', back, 'Not a known back page.')