Browse Source

Populate $Le_Domain in _installcert() if empty

This allows the reload command to use $Le_Domain when called during initial cert --issue
pull/2123/head
mjbnz 7 years ago
committed by GitHub
parent
commit
c25b4a2836
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      acme.sh

4
acme.sh

@ -4758,6 +4758,10 @@ _installcert() {
_reload_cmd="$6"
_backup_prefix="$7"
if [ "$Le_Domain" = "" ]; then
Le_Domain="$_main_domain"
fi
if [ "$_real_cert" = "$NO_VALUE" ]; then
_real_cert=""
fi

Loading…
Cancel
Save