nodogsplash: remove duplicate options, fixes #135

This commit is contained in:
Moritz Warning 2016-06-05 11:43:01 +02:00
parent c9a41eb08e
commit f3f344e949
1 changed files with 0 additions and 21 deletions

View File

@ -60,26 +60,6 @@ append_config_option() {
[ -n "$val" ] && echo "$option_name $val" >> $config_file
}
setup_user_authentication() {
local cfg="$1"
local val
config_get_bool val "$cfg" authenticate_immediately 0
[ $val -gt 0 ] && echo "AuthenticateImmediately yes" >> $CONFIGFILE
config_get val "$cfg" username
if [ -n "$val" ] ; then
echo "UsernameAuthentication 1" >> $CONFIGFILE
echo "Username $val" >> $CONFIGFILE
fi
config_get val "$cfg" password
if [ -n "$val" ] ; then
echo "PasswordAuthentication 1" >> $CONFIGFILE
echo "Password $val" >> $CONFIGFILE
fi
}
setup_mac_lists() {
local cfg="$1"
local MAC=""
@ -225,7 +205,6 @@ generate_uci_config() {
[ -n "$upload" -o -n "$download" ] && echo "TrafficControl yes" >> $CONFIGFILE
setup_mac_lists "$cfg"
setup_user_authentication "$cfg"
setup_firewall "$cfg"
}