Skip to content

Commit 75696dc

Browse files
Use the correct term FQDN instead of just "domain" (#5)
1 parent 16dac71 commit 75696dc

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

scripts/tls

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ This script configures TLS on an existing OpenOps installation.
1414
1515
Requirements:
1616
- OpenOps must be installed and running
17-
- You must have a valid domain name and email address for certificate registration
17+
- You must have a working fully qualified domain name and email address for certificate registration
1818
- The server must be accessible from the internet for certificate validation
1919
2020
The script will update existing certificates if they are already configured.
2121
2222
Installation path: $INSTALL_DIR
2323
EOF
2424

25-
[ -z "${DOMAIN}" ] && { [ "$INTERACTIVE" = "true" ] || { printf '%s\n' "OPENOPS_DOMAIN is not set" >&2; exit 1; }; printf 'Enter your domain: '; IFS= read -r DOMAIN < /dev/tty ; }
26-
echo "Domain: $DOMAIN"
25+
[ -z "${DOMAIN}" ] && { [ "$INTERACTIVE" = "true" ] || { printf '%s\n' "OPENOPS_DOMAIN is not set" >&2; exit 1; }; printf 'Enter your fully qualified domain name: '; IFS= read -r DOMAIN < /dev/tty ; }
26+
echo "Fully qualified domain name: $DOMAIN"
2727
[ -z "${EMAIL}" ] && { [ "$INTERACTIVE" = "true" ] || { printf '%s\n' "OPENOPS_EMAIL is not set" >&2; exit 1; }; printf 'Enter your email for certificate related notifications: '; IFS= read -r EMAIL < /dev/tty ; }
2828
echo "Email: $EMAIL"
2929
check_for_user_confirmation
@@ -189,4 +189,4 @@ create_certificates() {
189189

190190
main
191191

192-
echo
192+
echo

0 commit comments

Comments
 (0)