Detect public IPv6 as fallback
This commit is contained in:
parent
001eef52b6
commit
167bc58af5
1 changed files with 4 additions and 0 deletions
|
|
@ -207,6 +207,10 @@ function installQuestions () {
|
||||||
|
|
||||||
# Detect public IPv4 address and pre-fill for the user
|
# Detect public IPv4 address and pre-fill for the user
|
||||||
IP=$(ip -4 addr | sed -ne 's|^.* inet \([^/]*\)/.* scope global.*$|\1|p' | head -1)
|
IP=$(ip -4 addr | sed -ne 's|^.* inet \([^/]*\)/.* scope global.*$|\1|p' | head -1)
|
||||||
|
if [[ -z "$IP" ]]; then
|
||||||
|
# Detect public IPv6 address
|
||||||
|
IP=$(ip -6 addr | sed -ne 's|^.* inet6 \([^/]*\)/.* scope global.*$|\1|p' | head -1)
|
||||||
|
fi
|
||||||
APPROVE_IP=${APPROVE_IP:-n}
|
APPROVE_IP=${APPROVE_IP:-n}
|
||||||
if [[ $APPROVE_IP =~ n ]]; then
|
if [[ $APPROVE_IP =~ n ]]; then
|
||||||
read -rp "IP address: " -e -i "$IP" IP
|
read -rp "IP address: " -e -i "$IP" IP
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue