diff options
author | Daniil Baturin <daniil@vyos.io> | 2022-06-15 09:45:14 -0400 |
---|---|---|
committer | Daniil Baturin <daniil@vyos.io> | 2022-06-15 09:45:14 -0400 |
commit | aeb9491a7ac33314c78dce1157cecc4d6645acb6 (patch) | |
tree | 6d11e90cbb00eac8bcb0ed827f1ffedb482626f3 | |
parent | 3a9d9b4297c56bae42b1fc10a08cfcce58496483 (diff) | |
download | vyos-1x-aeb9491a7ac33314c78dce1157cecc4d6645acb6.tar.gz vyos-1x-aeb9491a7ac33314c78dce1157cecc4d6645acb6.zip |
T2719: correct script calls in 'show arp'
-rw-r--r-- | op-mode-definitions/show-arp.xml.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/op-mode-definitions/show-arp.xml.in b/op-mode-definitions/show-arp.xml.in index 11ac6a252..8662549fc 100644 --- a/op-mode-definitions/show-arp.xml.in +++ b/op-mode-definitions/show-arp.xml.in @@ -6,7 +6,7 @@ <properties> <help>Show Address Resolution Protocol (ARP) information</help> </properties> - <command>${vyos_op_scripts_dir}/neighbor.py --family inet</command> + <command>${vyos_op_scripts_dir}/neighbor.py show --family inet</command> <children> <tagNode name="interface"> <properties> @@ -15,7 +15,7 @@ <script>${vyos_completion_dir}/list_interfaces.py -b</script> </completionHelp> </properties> - <command>${vyos_op_scripts_dir}/neighbor.py --family inet --interface "$4"</command> + <command>${vyos_op_scripts_dir}/neighbor.py show --family inet --interface "$4"</command> </tagNode> </children> </node> |