diff options
author | Sander Klein <github@roedie.nl> | 2023-01-11 20:01:17 +0100 |
---|---|---|
committer | Sander Klein <github@roedie.nl> | 2023-01-11 20:01:17 +0100 |
commit | 0cdd2740f300a8b4ebfde931feb82610bcfd7f78 (patch) | |
tree | 2af9ea1cec296aef4e250523704146b44e41a239 /op-mode-definitions/show-interfaces-loopback.xml.in | |
parent | de1fa852c38b8eff22cf0c1a34abd13379c0705c (diff) | |
download | vyos-1x-0cdd2740f300a8b4ebfde931feb82610bcfd7f78.tar.gz vyos-1x-0cdd2740f300a8b4ebfde931feb82610bcfd7f78.zip |
Backport: T4918: op_mode interfaces: Fix show int
`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-loopback.xml.in')
-rw-r--r-- | op-mode-definitions/show-interfaces-loopback.xml.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/op-mode-definitions/show-interfaces-loopback.xml.in b/op-mode-definitions/show-interfaces-loopback.xml.in index 25a75ffff..eb86d5ece 100644 --- a/op-mode-definitions/show-interfaces-loopback.xml.in +++ b/op-mode-definitions/show-interfaces-loopback.xml.in @@ -11,13 +11,13 @@ <path>interfaces loopback</path> </completionHelp> </properties> - <command>${vyos_op_scripts_dir}/show_interfaces.py --intf="$4"</command> + <command>${vyos_op_scripts_dir}/show_interfaces.py --intf="$4" --intf-type=loopback</command> <children> <leafNode name="brief"> <properties> <help>Show summary of the specified dummy interface information</help> </properties> - <command>${vyos_op_scripts_dir}/show_interfaces.py --intf="$4" --action=show-brief</command> + <command>${vyos_op_scripts_dir}/show_interfaces.py --intf="$4" --action=show-brief --intf-type=dummy</command> </leafNode> </children> </tagNode> |