summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIndrajit Raychaudhuri <irc@indrajit.com>2024-01-20 02:24:04 -0600
committerIndrajit Raychaudhuri <irc@indrajit.com>2024-02-01 15:44:15 -0600
commitf03490f037814610fdc39478decbc653d01a9f31 (patch)
tree9fc2f3e4bea2737764cffedeaa233c28091efc5a
parentfb93b2d0da674a6590000fd049cb977fc7370739 (diff)
downloadvyos-1x-f03490f037814610fdc39478decbc653d01a9f31.tar.gz
vyos-1x-f03490f037814610fdc39478decbc653d01a9f31.zip
T2719: Add 'update' in standard op-mode function list
-rw-r--r--python/vyos/opmode.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/python/vyos/opmode.py b/python/vyos/opmode.py
index 230a85541..e1af1a682 100644
--- a/python/vyos/opmode.py
+++ b/python/vyos/opmode.py
@@ -1,4 +1,4 @@
-# Copyright 2022-2023 VyOS maintainers and contributors <maintainers@vyos.io>
+# Copyright 2022-2024 VyOS maintainers and contributors <maintainers@vyos.io>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -81,7 +81,7 @@ class InternalError(Error):
def _is_op_mode_function_name(name):
- if re.match(r"^(show|clear|reset|restart|add|delete|generate|set)", name):
+ if re.match(r"^(show|clear|reset|restart|add|update|delete|generate|set)", name):
return True
else:
return False
@@ -275,4 +275,3 @@ def run(module):
# Other functions should not return anything,
# although they may print their own warnings or status messages
func(**args)
-