install_postfixadmin.sh: don't break if IPv6 is not present.

This commit is contained in:
Christoph 2019-07-07 14:21:54 +02:00
parent a0f4427c56
commit 48a8860f78

View File

@ -246,8 +246,8 @@ DOMAIN="${MAIN_DOMAIN}.$TLD"
[[ -n "$WEBMASTER_EMAIL" ]] || WEBMASTER_EMAIL="admin@${MAIN_DOMAIN}.$TLD"
[[ -n "$IPV4" ]] || fatal "IPv4 Address (IPV4) not present!"
[[ -n "$IPV6" ]] || fatal "IPv4 Address (IPV6) not present!"
[[ -n "$IPV4" ]] || fatal "IPv4 Address not present!"
[[ -n "$IPV6" ]] || warn "IPv6 Address not present!"
[[ -n "$APACHE_DEBIAN_INSTALLATION" ]] || APACHE_DEBIAN_INSTALLATION=false
[[ -n "$PHP_DEBIAN_INSTALLATION" ]] || PHP_DEBIAN_INSTALLATION=false