diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-03-22 21:35:08 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-03-22 21:35:08 +0100 |
commit | 1046b18b6f5d1efa50d5ae58eb3c99b95c3007bc (patch) | |
tree | d2bc6cf63a4a09a7be302f99b7713709f415f6c8 /setup-interfaces.in | |
parent | 7c72655bc6d13dee1398eca5bc7b593042d90f06 (diff) | |
download | alpine-conf-1046b18b6f5d1efa50d5ae58eb3c99b95c3007bc.zip |
setun-interface: user the term 'ports' when asking for bridge ports
This makes it slightly clearer what we are doing
Diffstat (limited to 'setup-interfaces.in')
-rwxr-xr-x | setup-interfaces.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setup-interfaces.in b/setup-interfaces.in index 78b9113..544a43e 100755 --- a/setup-interfaces.in +++ b/setup-interfaces.in @@ -220,8 +220,8 @@ config_bridge() { while ! unconfigured_all_done; do set -- $(unconfigured_non_bridges) [ $# -eq 0 ] && return 0; - echo "Available interfaces are: $@" - ask "Which interface(s) do you want add to bridge $bridge? (or 'done')" $1 + echo "Available bridge ports are: $@" + ask "Which port(s) do you want add to bridge $bridge? (or 'done')" $1 case $resp in 'abort') return 1;; 'done') return 0;; |