mirror of https://github.com/zulip/zulip.git
setup-certbot: Eliminate obnoxious wget spew.
This commit is contained in:
parent
3f1f70fae2
commit
dd32348fca
|
@ -42,7 +42,7 @@ fi
|
|||
|
||||
CERTBOT_PATH="/usr/local/sbin/certbot-auto"
|
||||
# For reference https://certbot.eff.org/all-instructions/#debian-other-nginx
|
||||
wget https://dl.eff.org/certbot-auto -O "$CERTBOT_PATH"
|
||||
wget -q https://dl.eff.org/certbot-auto -O "$CERTBOT_PATH"
|
||||
chmod a+x "$CERTBOT_PATH"
|
||||
|
||||
"$CERTBOT_PATH" --standalone certonly -d "$DOMAIN" -m "$EMAIL" --agree-tos --non-interactive
|
||||
|
|
Loading…
Reference in New Issue