From f535d1790312e183edb35c3f5cf3b572c527dc2f Mon Sep 17 00:00:00 2001 From: Brielle Date: Mon, 20 Jun 2016 10:00:15 -0600 Subject: [PATCH] Change LE command to 'certbot-auto' --- gen-cert.sh | 2 +- gen-unifi-cert.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gen-cert.sh b/gen-cert.sh index e73bd41..39ddc66 100755 --- a/gen-cert.sh +++ b/gen-cert.sh @@ -30,7 +30,7 @@ PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" PROXYAUTH="--standalone --standalone-supported-challenges http-01 --http-01-port 9999" # Location of LetsEncrypt binary we use -LEBINARY="/usr/src/letsencrypt/letsencrypt-auto" +LEBINARY="/usr/src/letsencrypt/certbot-auto" if [[ ! -x ${LEBINARY} ]]; then echo "Error: LetsEncrypt binary not found in ${LEBINARY} !" diff --git a/gen-unifi-cert.sh b/gen-unifi-cert.sh index c910061..fce3df3 100755 --- a/gen-unifi-cert.sh +++ b/gen-unifi-cert.sh @@ -21,7 +21,7 @@ while getopts "ird:e:" opt; do done # Location of LetsEncrypt binary we use -LEBINARY="/usr/src/letsencrypt/letsencrypt-auto" +LEBINARY="/usr/src/letsencrypt/certbot-auto" # Command line options depending on New or Renew. NEWCERT="--renew-by-default certonly"