From 2773c3479fb7a34dbae7fc5dde18e514e9ba3a65 Mon Sep 17 00:00:00 2001 From: mattclarkpgh Date: Tue, 3 Jan 2017 14:48:01 -0500 Subject: [PATCH] Added --quiet to certbot command. certbot command was failing for me. Added --quiet per https://github.com/certbot/certbot/issues/3657 --- scripts/letsencrypt-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/letsencrypt-setup b/scripts/letsencrypt-setup index b216d2a..45f560b 100755 --- a/scripts/letsencrypt-setup +++ b/scripts/letsencrypt-setup @@ -4,7 +4,7 @@ if [ -z "$WEBROOT" ] || [ -z "$GIT_EMAIL" ] || [ -z "$DOMAIN" ]; then echo "You need the \$WEBROOT, \$GIT_EMAIL and the \$DOMAIN Variables" else - certbot certonly --webroot -w $WEBROOT -d $DOMAIN --email $GIT_EMAIL --agree-tos + certbot certonly --webroot -w $WEBROOT -d $DOMAIN --email $GIT_EMAIL --agree-tos --quiet ln -s /etc/nginx/sites-available/default-ssl.conf /etc/nginx/sites-enabled/ # change nginx for webroot and domain name