Add "renumber" to the list of valid commands.
[invirt/packages/invirt-web.git] / code / controls.py
index 0889d4c..c9193cb 100644 (file)
@@ -229,7 +229,7 @@ def commandResult(username, state, command_name, machine_id, fields):
     cdrom = fields.get('cdrom') or None
     if cdrom is not None and not CDROM.query.filter_by(cdrom_id=cdrom).one():
         raise CodeError("Invalid cdrom type '%s'" % cdrom)    
-    if action not in "reboot create destroy shutdown delete".split(" "):
+    if action not in "reboot create destroy shutdown delete renumber".split(" "):
         raise CodeError("Invalid action '%s'" % action)
     if action == 'reboot':
         if cdrom is not None: