If only one interface available, don't show whiptail, just use that interface.

Signed-off-by: Dan Schaper <dan.schaper@pi-hole.net>
pull/1037/head
Dan Schaper 8 years ago
parent 1d608b204a
commit 6ff79835da
No known key found for this signature in database
GPG Key ID: 572E999E385B7BFC

@ -247,6 +247,11 @@ chooseInterface() {
# Loop sentinel variable
local firstLoop=1
if [[ $(echo ${availableInterfaces} | wc -l) -eq 1 ]]; then
PIHOLE_INTERFACE=${availableInterfaces}
return
fi
while read -r line; do
mode="OFF"
if [[ ${firstLoop} -eq 1 ]]; then

Loading…
Cancel
Save