pull/4625/merge
Phil Porada 2025-03-19 00:18:53 -04:00 committed by GitHub
commit 98427c241f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 1 deletions

12
acme.sh
View File

@ -223,7 +223,7 @@ _printargs() {
} }
_dlg_versions() { _dlg_versions() {
echo "Diagnosis versions: " echo "Diagnose versions: "
echo "openssl:$ACME_OPENSSL_BIN" echo "openssl:$ACME_OPENSSL_BIN"
if _exists "${ACME_OPENSSL_BIN:-openssl}"; then if _exists "${ACME_OPENSSL_BIN:-openssl}"; then
${ACME_OPENSSL_BIN:-openssl} version 2>&1 ${ACME_OPENSSL_BIN:-openssl} version 2>&1
@ -7003,6 +7003,8 @@ Parameters:
--syslog <0|3|6|7> Syslog level, 0: disable syslog, 3: error, 6: info, 7: debug. --syslog <0|3|6|7> Syslog level, 0: disable syslog, 3: error, 6: info, 7: debug.
--eab-kid <eab_key_id> Key Identifier for External Account Binding. --eab-kid <eab_key_id> Key Identifier for External Account Binding.
--eab-hmac-key <eab_hmac_key> HMAC key for External Account Binding. --eab-hmac-key <eab_hmac_key> HMAC key for External Account Binding.
--ari-enable <0|1> Boolean to check the renewalInfo endpoint when evaluating whether a renewal is necessary, 0: false/disabled, 1: true/enabled.
--ari-wait-duration <seconds> The time in seconds to wait for the renewal window suggested by the renewalInfo endpoint.
These parameters are to install the cert to nginx/Apache or any other server after issue/renew a cert: These parameters are to install the cert to nginx/Apache or any other server after issue/renew a cert:
@ -7452,6 +7454,14 @@ _process() {
--set-default-chain) --set-default-chain)
_CMD="setdefaultchain" _CMD="setdefaultchain"
;; ;;
--ari-enable)
_ari_enable="${2}"
ARI_ENABLE="$_ari_enable"
shift
;;
--ari-sleep-duration)
_CMD="setdef"
;;
-d | --domain) -d | --domain)
_dvalue="$2" _dvalue="$2"