diff options
| author | Christian Breunig <christian@breunig.cc> | 2023-04-01 12:33:21 +0200 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2023-04-01 12:33:21 +0200 |
| commit | 15922541cef35956107e0b32ee952fee05928dbd (patch) | |
| tree | 6d76e9ef354a72884290f2b01b4dc2903af3932c | |
| parent | dcd2edc6ddeeba156125aa5663898029b20d553a (diff) | |
| download | vyos-1x-15922541cef35956107e0b32ee952fee05928dbd.tar.gz vyos-1x-15922541cef35956107e0b32ee952fee05928dbd.zip | |
isis: op-mode: T5132: bugfix VRF commands for route and neighbor
show isis vrf <name> neighbor|route
did not call the vtysh wrapper but instead always called the commands
for the default routing table.
| -rw-r--r-- | op-mode-definitions/include/isis-common.xml.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/op-mode-definitions/include/isis-common.xml.i b/op-mode-definitions/include/isis-common.xml.i index 4a2f1e503..0e20861c7 100644 --- a/op-mode-definitions/include/isis-common.xml.i +++ b/op-mode-definitions/include/isis-common.xml.i @@ -94,7 +94,7 @@ <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> </leafNode> </children> - <command>vtysh -c "show isis neighbor"</command> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> </node> <tagNode name="neighbor"> <properties> @@ -129,7 +129,7 @@ <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> </leafNode> </children> - <command>vtysh -c "show isis route"</command> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> </node> <node name="segment-routing"> <properties> |
