mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-12-24 13:50:17 +00:00
Remove CIDR from IPv6 address when detecting it in the install script
Signed-off-by: Adam Warner <adamw@rner.email> # Conflicts: # automated install/basic-install.sh
This commit is contained in:
parent
9464b71a6e
commit
edb594461d
1 changed files with 5 additions and 5 deletions
|
@ -344,8 +344,8 @@ useIPv6dialog() {
|
|||
# Determine type of found IPv6 addresses
|
||||
for i in "${IPV6_ADDRESSES[@]}"; do
|
||||
result=$(testIPv6 "$i")
|
||||
[[ "${result}" == "ULA" ]] && ULA_ADDRESS="$i"
|
||||
[[ "${result}" == "GUA" ]] && GUA_ADDRESS="$i"
|
||||
[[ "${result}" == "ULA" ]] && ULA_ADDRESS="${i%/*}"
|
||||
[[ "${result}" == "GUA" ]] && GUA_ADDRESS="${i%/*}"
|
||||
done
|
||||
|
||||
# Determine which address to be used: Prefer ULA over GUA or don't use any if none found
|
||||
|
@ -1510,7 +1510,6 @@ main() {
|
|||
else
|
||||
echo "::: Update complete!"
|
||||
fi
|
||||
|
||||
if [[ ${INSTALL_WEB} == true ]]; then
|
||||
if (( ${#pw} > 0 )) ; then
|
||||
echo ":::"
|
||||
|
@ -1524,7 +1523,8 @@ main() {
|
|||
fi
|
||||
|
||||
echo ":::"
|
||||
echo "::: The install log is located at: /etc/pihole/install.log"
|
||||
echo "::: The install log is located at: /etc/pihole/install.log
|
||||
"
|
||||
}
|
||||
|
||||
if [[ "${PH_TEST}" != true ]] ; then
|
||||
|
|
Loading…
Reference in a new issue