From: Quentin Smith Date: Sun, 27 May 2018 07:36:13 +0000 (-0400) Subject: Add "renumber" to the list of valid commands. X-Git-Tag: 0.1.51^0 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/commitdiff_plain/01c93d65e92821d9ea7cbb80d14fd56579bf98a5?ds=sidebyside Add "renumber" to the list of valid commands. --- diff --git a/code/controls.py b/code/controls.py index 0889d4c..c9193cb 100644 --- a/code/controls.py +++ b/code/controls.py @@ -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: diff --git a/debian/changelog b/debian/changelog index a0957b5..0f7e406 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +invirt-web (0.1.51) unstable; urgency=low + + * Add "renumber" to the list of valid commands. + + -- Quentin Smith 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.