Skip to content

Commit 5fb991e

Browse files
committed
fix(brctl): use available interfaces instead of configured
When adding a network interface to a bridge we most probably want to use one that hasn't been configured yet.
1 parent b6c822f commit 5fb991e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

completions/brctl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ _brctl()
2626
3)
2727
case $command in
2828
addif | delif)
29-
_configured_interfaces
29+
_available_interfaces
3030
;;
3131
stp)
3232
COMPREPLY=($(compgen -W 'on off' -- "$cur"))

0 commit comments

Comments
 (0)