diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-12-30 13:00:22 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-12-30 13:00:37 +0100 |
commit | ef3b8d81fc98a43e6a7605ea807667ad8b674bd9 (patch) | |
tree | 4a1ab0407217e6ff92a16bb994f840a44fa45844 | |
parent | 30d0c3c8525b8e39fc7536f5acc424f42d5fe821 (diff) | |
download | vyos-1x-ef3b8d81fc98a43e6a7605ea807667ad8b674bd9.tar.gz vyos-1x-ef3b8d81fc98a43e6a7605ea807667ad8b674bd9.zip |
list_interfaces: remove duplicate list of wireless interfaces
-rwxr-xr-x | src/completion/list_interfaces.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/completion/list_interfaces.py b/src/completion/list_interfaces.py index f336968a6..0ed683074 100755 --- a/src/completion/list_interfaces.py +++ b/src/completion/list_interfaces.py @@ -32,10 +32,9 @@ elif args.bridgeable: bond = vyos.interfaces.list_interfaces_of_type("bonding") l2tpv3 = vyos.interfaces.list_interfaces_of_type("l2tpv3") openvpn = vyos.interfaces.list_interfaces_of_type("openvpn") - vxlan = vyos.interfaces.list_interfaces_of_type("vxlan") wireless = vyos.interfaces.list_interfaces_of_type("wireless") tunnel = vyos.interfaces.list_interfaces_of_type("tunnel") - wireless = vyos.interfaces.list_interfaces_of_type("wireless") + vxlan = vyos.interfaces.list_interfaces_of_type("vxlan") geneve = vyos.interfaces.list_interfaces_of_type("geneve") interfaces = eth + bond + l2tpv3 + openvpn + vxlan + tunnel + wireless + geneve |