„LE_Wildcard.sh“ ändern

This commit is contained in:
Stephan 2021-10-02 14:26:12 +00:00
parent 84aead71dc
commit 2d7725eacb
1 changed files with 8 additions and 8 deletions

View File

@ -49,6 +49,14 @@
cert_create () {
# ----- ZERTIFIKAT VORBEREITEN -----
# create (Token für txt-Record):
echo "Zertifikatserstellung vorbereiten:"
echo "(folge den nachfolgenden Anweisungen im Output für den DNS txt-Record)"
# ./acme.sh --force --test --issue --home $WORKPATH --config-home "$WORKPATH" --cert-home "$WORKPATH/LE_CERT-home" --accountemail "${ACCOUNTMAIL}" ${DOMAINLIST} --cert-file "$new_cert" --key-file "$new_privatkey" --ca-file "$new_intermediate_cert" --fullchain-file "$new_full_chain_certs" --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please
./acme.sh --force --issue --home "$WORKPATH" --config-home "$WORKPATH" --cert-home "$WORKPATH/LE_CERT-home" --accountemail "${ACCOUNTMAIL}" ${DOMAINLIST} --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please
exit 0
}
echo -n "Download acme.sh ➜ "
if [ -f ./acme.sh ]; then
echo "ok (bereits vorhanden / Version: $(get_key_value ./acme.sh VER))"
@ -62,14 +70,6 @@ cert_create () {
exit
fi
fi
# create (Token für txt-Record):
echo "Zertifikatserstellung vorbereiten:"
echo "(folge den nachfolgenden Anweisungen im Output für den DNS txt-Record)"
# ./acme.sh --force --test --issue --home $WORKPATH --config-home "$WORKPATH" --cert-home "$WORKPATH/LE_CERT-home" --accountemail "${ACCOUNTMAIL}" ${DOMAINLIST} --cert-file "$new_cert" --key-file "$new_privatkey" --ca-file "$new_intermediate_cert" --fullchain-file "$new_full_chain_certs" --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please
./acme.sh --force --issue --home "$WORKPATH" --config-home "$WORKPATH" --cert-home "$WORKPATH/LE_CERT-home" --accountemail "${ACCOUNTMAIL}" ${DOMAINLIST} --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please
exit 0
}
# initiale Zertifikatserstellung nur mit passendem Parameter (create) starten:
if [[ $1 = create ]]; then