summaryrefslogtreecommitdiff
path: root/src/completion
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-12-30 13:00:22 +0100
committerChristian Poessinger <christian@poessinger.com>2019-12-30 13:00:37 +0100
commitef3b8d81fc98a43e6a7605ea807667ad8b674bd9 (patch)
tree4a1ab0407217e6ff92a16bb994f840a44fa45844 /src/completion
parent30d0c3c8525b8e39fc7536f5acc424f42d5fe821 (diff)
downloadvyos-1x-ef3b8d81fc98a43e6a7605ea807667ad8b674bd9.tar.gz
vyos-1x-ef3b8d81fc98a43e6a7605ea807667ad8b674bd9.zip
list_interfaces: remove duplicate list of wireless interfaces
Diffstat (limited to 'src/completion')
-rwxr-xr-xsrc/completion/list_interfaces.py3
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