diff options
author | Daniil Baturin <daniil@vyos.io> | 2023-10-20 18:07:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-20 18:07:24 +0100 |
commit | da0944ff3f4cc649dddeeec3f2659ca9029079ca (patch) | |
tree | d5afc031b3ce52f513e73f896a9fcb35ad2cb6e8 /op-mode-definitions/show-interfaces-wireless.xml.in | |
parent | 999c99a19bd72c4c6220530752bcffed8bd4cbad (diff) | |
parent | f72834693c1be3edb1983f0c102fa630d924f439 (diff) | |
download | vyos-1x-da0944ff3f4cc649dddeeec3f2659ca9029079ca.tar.gz vyos-1x-da0944ff3f4cc649dddeeec3f2659ca9029079ca.zip |
Merge pull request #2376 from vyos/mergify/bp/sagitta/pr-2373
T4913: migrate wireless scripts to new op-mode style (backport #2373)
Diffstat (limited to 'op-mode-definitions/show-interfaces-wireless.xml.in')
-rw-r--r-- | op-mode-definitions/show-interfaces-wireless.xml.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/op-mode-definitions/show-interfaces-wireless.xml.in b/op-mode-definitions/show-interfaces-wireless.xml.in index 27c0f43db..09c9a7895 100644 --- a/op-mode-definitions/show-interfaces-wireless.xml.in +++ b/op-mode-definitions/show-interfaces-wireless.xml.in @@ -20,7 +20,7 @@ <properties> <help>Show wireless interface configuration</help> </properties> - <command>${vyos_op_scripts_dir}/show_wireless.py --brief</command> + <command>${vyos_op_scripts_dir}/interfaces_wireless.py show_info</command> </leafNode> </children> </node> @@ -35,15 +35,15 @@ <children> <leafNode name="brief"> <properties> - <help>Show summary of the specified wireless interface information</help> + <help>Show brief summary of the specified wireless interface</help> </properties> <command>${vyos_op_scripts_dir}/interfaces.py show_summary --intf-name="$4" --intf-type=wireless</command> </leafNode> <node name="scan"> <properties> - <help>Show summary of the specified wireless interface information</help> + <help>Scan for networks via specified wireless interface</help> </properties> - <command>sudo ${vyos_op_scripts_dir}/show_wireless.py --scan "$4"</command> + <command>sudo ${vyos_op_scripts_dir}/interfaces_wireless.py show_scan --intf-name="$4"</command> <children> <leafNode name="detail"> <properties> @@ -57,7 +57,7 @@ <properties> <help>Show specified Wireless interface information</help> </properties> - <command>${vyos_op_scripts_dir}/show_wireless.py --stations "$4"</command> + <command>${vyos_op_scripts_dir}/interfaces_wireless.py show_stations --intf-name="$4"</command> </leafNode> <tagNode name="vif"> <properties> |