Add "renumber" to the list of valid commands. quentin/renumber-remctl 0.1.51
authorQuentin Smith <quentin@mit.edu>
Sun, 27 May 2018 07:36:13 +0000 (03:36 -0400)
committerQuentin Smith <quentin@mit.edu>
Sun, 27 May 2018 07:36:13 +0000 (03:36 -0400)
code/controls.py
debian/changelog

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:
index a0957b5..0f7e406 100644 (file)
@@ -1,3 +1,9 @@
+invirt-web (0.1.51) unstable; urgency=low
+
+  * Add "renumber" to the list of valid commands.
+
+ -- Quentin Smith <quentin@mit.edu>  Sun, 27 May 2018 03:35:56 -0400
+
 invirt-web (0.1.50) unstable; urgency=low
 
   * Show "renumber" button if user can self-service renumber.