File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ This script configures TLS on an existing OpenOps installation.
1414
1515Requirements:
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
2020The script will update existing certificates if they are already configured.
2121
2222Installation path: $INSTALL_DIR
2323EOF
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
190190main
191191
192- echo
192+ echo
You can’t perform that action at this time.
0 commit comments