diff options
author | Sander Klein <github@roedie.nl> | 2023-01-07 22:32:37 +0100 |
---|---|---|
committer | Sander Klein <github@roedie.nl> | 2023-01-07 22:32:37 +0100 |
commit | 41b3ecca0eb1676467fea343ff4490ab02d77cb3 (patch) | |
tree | 47a0d2d1924747ceb113c6ed502193a268d11f31 /op-mode-definitions/show-interfaces-l2tpv3.xml.in | |
parent | 47216bbe29e0af8004040b5f1c9dc8450c0e8865 (diff) | |
download | vyos-1x-41b3ecca0eb1676467fea343ff4490ab02d77cb3.tar.gz vyos-1x-41b3ecca0eb1676467fea343ff4490ab02d77cb3.zip |
T4918: op_mode interfaces: Fix show interfaces
`show interfaces ethernet eth0` and `show interface bonding eth0`
produces the same output. While this is not a big problem it does
make usage a bit odd sometimes.
This commit adds the --intf_type option to all instances of
interfaces.py to make output consistent.
Diffstat (limited to 'op-mode-definitions/show-interfaces-l2tpv3.xml.in')
-rw-r--r-- | op-mode-definitions/show-interfaces-l2tpv3.xml.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/op-mode-definitions/show-interfaces-l2tpv3.xml.in b/op-mode-definitions/show-interfaces-l2tpv3.xml.in index ff08b8266..713e36dac 100644 --- a/op-mode-definitions/show-interfaces-l2tpv3.xml.in +++ b/op-mode-definitions/show-interfaces-l2tpv3.xml.in @@ -11,13 +11,13 @@ <path>interfaces l2tpv3</path> </completionHelp> </properties> - <command>${vyos_op_scripts_dir}/interfaces.py show --intf_name="$4"</command> + <command>${vyos_op_scripts_dir}/interfaces.py show --intf_name="$4" --intf_type=l2tpv3</command> <children> <leafNode name="brief"> <properties> <help>Show summary of the specified L2TPv3 interface information</help> </properties> - <command>${vyos_op_scripts_dir}/interfaces.py show_summary --intf_name="$4"</command> + <command>${vyos_op_scripts_dir}/interfaces.py show_summary --intf_name="$4" --intf_type=l2tpv3</command> </leafNode> </children> </tagNode> |