Merge pull request #146 from iblamefish/multiple-interfaces

installer - only select first (probably default) interface in list instead of all
This commit is contained in:
Jacob Salmela 2016-01-02 17:17:58 -06:00
commit d2b6947886
1 changed files with 8 additions and 1 deletions

View File

@ -74,9 +74,16 @@ chooseInterface()
{
# Turn the available interfaces into an array so it can be used with a whiptail dialog
interfacesArray=()
firstloop=1
while read -r line
do
interfacesArray+=("$line" "available" "ON")
mode="OFF"
if [[ $firstloop -eq 1 ]]; then
firstloop=0
mode="ON"
fi
interfacesArray+=("$line" "available" "$mode")
done <<< "$availableInterfaces"
# Find out how many interfaces are available to choose from