Skip to content

Commit fb92e83

Browse files
Added changes to make ACME_EMAIL to default email (#1314)
1 parent f3e2954 commit fb92e83

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/hyperconverged-lab.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,12 @@ done
8989

9090
if [ -z "${ACME_EMAIL}" ]; then
9191
read -rp "Enter a valid email address for use with ACME, press enter to skip: " ACME_EMAIL
92-
export ACME_EMAIL="${ACME_EMAIL:-}"
9392
fi
9493

94+
# Use of ACME_EMAIL to default Email
95+
ACME_EMAIL="${ACME_EMAIL:-example@aol.com}"
96+
export ACME_EMAIL
97+
9598
if [ -z "${GATEWAY_DOMAIN}" ]; then
9699
echo "The domain name for the gateway is required, if you do not have a domain name press enter to use the default"
97100
read -rp "Enter the domain name for the gateway [cluster.local]: " GATEWAY_DOMAIN

0 commit comments

Comments
 (0)