We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3e2954 commit fb92e83Copy full SHA for fb92e83
scripts/hyperconverged-lab.sh
@@ -89,9 +89,12 @@ done
89
90
if [ -z "${ACME_EMAIL}" ]; then
91
read -rp "Enter a valid email address for use with ACME, press enter to skip: " ACME_EMAIL
92
- export ACME_EMAIL="${ACME_EMAIL:-}"
93
fi
94
+# Use of ACME_EMAIL to default Email
95
+ACME_EMAIL="${ACME_EMAIL:-example@aol.com}"
96
+export ACME_EMAIL
97
+
98
if [ -z "${GATEWAY_DOMAIN}" ]; then
99
echo "The domain name for the gateway is required, if you do not have a domain name press enter to use the default"
100
read -rp "Enter the domain name for the gateway [cluster.local]: " GATEWAY_DOMAIN
0 commit comments