diff options
author | Daniil Baturin <daniil@vyos.io> | 2022-06-09 09:16:53 -0400 |
---|---|---|
committer | Daniil Baturin <daniil@vyos.io> | 2022-06-09 09:16:53 -0400 |
commit | 812a4fc3f3063741da0fa01cbbbf17dead66a664 (patch) | |
tree | 3f882254041d6b4c4c05b0d961156e93832fd9c0 /op-mode-definitions/show-arp.xml.in | |
parent | c40b9064d97d14bee7c5f9f9674f898a1b25a6ae (diff) | |
download | vyos-1x-812a4fc3f3063741da0fa01cbbbf17dead66a664.tar.gz vyos-1x-812a4fc3f3063741da0fa01cbbbf17dead66a664.zip |
T2719: prototype of an op mode command runner
based on type hints and introspection
Diffstat (limited to 'op-mode-definitions/show-arp.xml.in')
-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 58cc6e45e..11ac6a252 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}/show_neigh.py --family inet</command> + <command>${vyos_op_scripts_dir}/neighbor.py --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}/show_neigh.py --family inet --interface "$4"</command> + <command>${vyos_op_scripts_dir}/neighbor.py --family inet --interface "$4"</command> </tagNode> </children> </node> |