Browse Source

Merge c3bb17c1ed into 0cef5edac2

pull/6720/merge
magyarsz 5 days ago
committed by GitHub
parent
commit
087264ae4c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      acme.sh

5
acme.sh

@ -5618,11 +5618,8 @@ renew() {
fi
issue "$Le_Webroot" "$Le_Domain" "$Le_Alt" "$Le_Keylength" "$Le_RealCertPath" "$Le_RealKeyPath" "$Le_RealCACertPath" "$Le_ReloadCmd" "$Le_RealFullChainPath" "$Le_PreHook" "$Le_PostHook" "$Le_RenewHook" "$Le_LocalAddress" "$Le_ChallengeAlias" "$Le_Preferred_Chain" "$Le_Valid_From" "$Le_Valid_To" "$Le_Certificate_Profile" "$Le_ExtKeyUse"
res="$?"
if [ "$res" != "0" ]; then
return "$res"
fi
if [ "$Le_DeployHook" ]; then
if [ "$Le_DeployHook" ] && [ "$res" = "0" ]; then
_deploy "$Le_Domain" "$Le_DeployHook"
res="$?"
fi

Loading…
Cancel
Save