diff options
author | Thomas Lange <code@nerdmind.de> | 2018-01-04 00:57:14 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2018-03-31 15:09:20 +0200 |
commit | f380c7b264ab0ea0d1edfc2fa37082be5bc949c2 (patch) | |
tree | a6dc9be6b02b2e621964bbd24c0dcea824f1e595 | |
parent | 402fecc96e748fa7f8b8c1012637abc23ac14797 (diff) | |
download | painlessle-f380c7b264ab0ea0d1edfc2fa37082be5bc949c2.tar.gz painlessle-f380c7b264ab0ea0d1edfc2fa37082be5bc949c2.tar.xz painlessle-f380c7b264ab0ea0d1edfc2fa37082be5bc949c2.zip |
Remove unnecessary command-line option "--text"
This commit removes the unnecessary command-line option "--text" (see https://github.com/certbot/certbot/issues/4511#issuecomment-325507898).
-rwxr-xr-x | painless-le.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/painless-le.sh b/painless-le.sh index d4085de..9b265a4 100755 --- a/painless-le.sh +++ b/painless-le.sh @@ -92,7 +92,7 @@ fi #=============================================================================== # Execute Let's Encrypt and accomplish the ACME challenge to get the certificate #=============================================================================== -certbot certonly --authenticator standalone --text --server "${LETSENCRYPT_ENDPOINT}" --csr "${REQUESTFILE}" \ +certbot certonly --authenticator standalone --server "${LETSENCRYPT_ENDPOINT}" --csr "${REQUESTFILE}" \ --cert-path "${CERTIFICATE_ONLY}.$$" --fullchain-path "${CERTIFICATE_FULL}.$$" --chain-path "${INTERMEDIATE}.$$" #=============================================================================== |