summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-08-25 14:55:10 +0200
committerChristian Poessinger <christian@poessinger.com>2021-08-26 18:21:05 +0200
commit3cca26f6dcf74ae430cc557f67a4116adaec19fe (patch)
tree0a5be48536dfac5d22c75a42732481be9be69ae6
parent5b0fce20c2c5afd2ecfb7544e13eb623f3502443 (diff)
downloadvyos-1x-3cca26f6dcf74ae430cc557f67a4116adaec19fe.tar.gz
vyos-1x-3cca26f6dcf74ae430cc557f67a4116adaec19fe.zip
op-mode: frr: T1514: add possibility to restart isis daemon
(cherry picked from commit b4b2c91127289c7b62afb24304054d57357a48c5)
-rw-r--r--op-mode-definitions/restart-frr.xml.in6
-rwxr-xr-xsrc/op_mode/restart_frr.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/op-mode-definitions/restart-frr.xml.in b/op-mode-definitions/restart-frr.xml.in
index a5ba5b11f..475bd1ee8 100644
--- a/op-mode-definitions/restart-frr.xml.in
+++ b/op-mode-definitions/restart-frr.xml.in
@@ -20,6 +20,12 @@
</properties>
<command>sudo ${vyos_op_scripts_dir}/restart_frr.py --action restart --daemon bgpd</command>
</leafNode>
+ <leafNode name="isis">
+ <properties>
+ <help>Restart Intermediate System to Intermediate System (IS-IS) routing daemon</help>
+ </properties>
+ <command>sudo ${vyos_op_scripts_dir}/restart_frr.py --action restart --daemon isisd</command>
+ </leafNode>
<leafNode name="ospf">
<properties>
<help>Restart Open Shortest Path First (OSPF) routing daemon</help>
diff --git a/src/op_mode/restart_frr.py b/src/op_mode/restart_frr.py
index d1b66b33f..0b2322478 100755
--- a/src/op_mode/restart_frr.py
+++ b/src/op_mode/restart_frr.py
@@ -155,7 +155,7 @@ def _check_args_daemon(daemons):
# define program arguments
cmd_args_parser = argparse.ArgumentParser(description='restart frr daemons')
cmd_args_parser.add_argument('--action', choices=['restart'], required=True, help='action to frr daemons')
-cmd_args_parser.add_argument('--daemon', choices=['bfdd', 'bgpd', 'ospfd', 'ospf6d', 'ripd', 'ripngd', 'staticd', 'zebra'], required=False, nargs='*', help='select single or multiple daemons')
+cmd_args_parser.add_argument('--daemon', choices=['bfdd', 'bgpd', 'ospfd', 'ospf6d', 'isisd', 'ripd', 'ripngd', 'staticd', 'zebra'], required=False, nargs='*', help='select single or multiple daemons')
# parse arguments
cmd_args = cmd_args_parser.parse_args()