Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial implementation of ACME Renewal Information (ARI) #4625

Draft
wants to merge 5 commits into
base: dev
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion acme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ _printargs() {
}

_dlg_versions() {
echo "Diagnosis versions: "
echo "Diagnose versions: "
echo "openssl:$ACME_OPENSSL_BIN"
if _exists "${ACME_OPENSSL_BIN:-openssl}"; then
${ACME_OPENSSL_BIN:-openssl} version 2>&1
Expand Down Expand Up @@ -6966,6 +6966,8 @@ Parameters:
--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-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:
Expand Down Expand Up @@ -7414,6 +7416,14 @@ _process() {
--set-default-chain)
_CMD="setdefaultchain"
;;
--ari-enable)
_ari_enable="${2}"
ARI_ENABLE="$_ari_enable"
shift
;;
--ari-sleep-duration)
_CMD="setdef"
;;
-d | --domain)
_dvalue="$2"

Expand Down
Loading