From 6e1db7200418abd9746384a2c9c875465231f23c Mon Sep 17 00:00:00 2001 From: bryan Date: Thu, 29 Jan 2026 10:44:20 -0500 Subject: [PATCH] Add license --- acme-cpanel.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) mode change 100755 => 100644 acme-cpanel.sh diff --git a/acme-cpanel.sh b/acme-cpanel.sh old mode 100755 new mode 100644 index d8ac9f6..4f24ce6 --- a/acme-cpanel.sh +++ b/acme-cpanel.sh @@ -5,6 +5,7 @@ # See README.md for more details # # Copyright 2020 Bryan Roessler +# MIT Licensed unset SITES_DIR USEREMAIL DOMAIN_FILES DOMAIN_GROUPS DEPLOY_CMD_PREFIX ISSUE_CMD_PREFIX DEBUG GROUP @@ -197,7 +198,7 @@ issue_and_deploy_certs() { # Deploy certificates one domain at a time for domain in $domain_group; do - deploy_cmd=("${DEPLOY_CMD_PREFIX[@]}" "-d" "$domain") # I think we only need to deploy to the domain, not subdomains (e.g. www.) + deploy_cmd=("${DEPLOY_CMD_PREFIX[@]}" "-d" "$domain") # only deploy to the domain, not subdomains echo "Running:" "${deploy_cmd[@]}" if ! "${deploy_cmd[@]}"; then echo "Failed to deploy certificate for $domain"