X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/47b9cb0d87524e6598da025f3c49cd013f00606b..b330d95bd2b2f5fe7724d470856e58ebe75df1ab:/code/controls.py diff --git a/code/controls.py b/code/controls.py index a5f1693..0889d4c 100644 --- a/code/controls.py +++ b/code/controls.py @@ -223,6 +223,7 @@ def deleteVM(machine): def commandResult(username, state, command_name, machine_id, fields): start_time = 0 + result = None machine = validation.Validate(username, state, machine_id=machine_id).machine action = command_name cdrom = fields.get('cdrom') or None @@ -274,10 +275,14 @@ def commandResult(username, state, command_name, machine_id, fields): raise CodeError('ERROR on remctl') elif action == 'delete': deleteVM(machine) + elif action == 'renumber': + result = remctl('control', machine.name, 'renumber') d = dict(user=username, command=action, machine=machine) + if result: + d['result'] = result return d def resizeDisk(machine_name, disk_name, new_size):