Additional check to fix any existing cases of "24h" in setupVars.conf automatically.

Signed-off-by: Adam Warner <adamw@rner.email>
pull/1646/head
Adam Warner 7 years ago
parent 4fb66e632f
commit 0a9965292c
No known key found for this signature in database
GPG Key ID: 03843F6C65554B22

@ -263,6 +263,11 @@ ProcessDHCPSettings() {
elif [[ "${DHCP_LEASETIME}" == "" ]]; then
leasetime="24"
change_setting "DHCP_LEASETIME" "${leasetime}"
elif [[ "${DHCP_LEASETIME}" == "24h" ]]; then
#Installation is affected by known bug, introduced in a previous version.
#This will automatically clean up setupVars.conf and remove the unnecessary "h"
leasetime="24"
change_setting "DHCP_LEASETIME" "${leasetime}"
else
leasetime="${DHCP_LEASETIME}h"
fi

Loading…
Cancel
Save