Skip to content

Commit b5a7cd8

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 2a8ea8d commit b5a7cd8

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 @@ _comp_cmd_brctl()
2626
3)
2727
case $command in
2828
addif | delif)
29-
_comp_compgen_configured_interfaces
29+
_comp_compgen_available_interfaces
3030
;;
3131
stp)
3232
_comp_compgen -- -W 'on off'

0 commit comments

Comments
 (0)