Browse Source

Merge e73a41c07b into 10627e4974

pull/6449/merge
Low-power 3 months ago
committed by GitHub
parent
commit
bbb5356621
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 9
      acme.sh

9
acme.sh

@ -1909,7 +1909,7 @@ _inithttp() {
fi
if [ -z "$_ACME_WGET" ] && _exists "wget"; then
_ACME_WGET="wget -q"
_ACME_WGET="${ACME_CUSTOM_WGET:-wget} -q"
if [ "$ACME_HTTP_NO_REDIRECTS" ]; then
_ACME_WGET="$_ACME_WGET --max-redirect 0 "
fi
@ -7069,7 +7069,7 @@ Parameters:
--listen-v4 Force standalone/tls server to listen at ipv4.
--listen-v6 Force standalone/tls server to listen at ipv6.
--openssl-bin <file> Specifies a custom openssl bin location.
--use-wget Force to use wget, if you have both curl and wget installed.
--use-wget[=<command>] Force to use wget, if you have both curl and wget installed.
--yes-I-know-dns-manual-mode-enough-go-ahead-please Force use of dns manual mode.
See: $_DNS_MANUAL_WIKI
@ -7825,6 +7825,11 @@ _process() {
_use_wget="1"
ACME_USE_WGET="1"
;;
--use-wget=*)
_use_wget="1"
ACME_USE_WGET="1"
ACME_CUSTOM_WGET="${1#--use-wget=}"
;;
--branch | -b)
export BRANCH="$2"
shift

Loading…
Cancel
Save