Skip to content

Commit

Permalink
letsencrypt add --non-interactive as docs state
Browse files Browse the repository at this point in the history
as in certbot/certbot#1154 (comment)

also, dialog should be removed soon, so this problem should disappear certbot/certbot#1154 (comment)
  • Loading branch information
sheershoff committed Nov 3, 2016
1 parent 942e416 commit e5fe4ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 15-https
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ if [ "$SSL_TYPE" == "letsencrypt" ]; then

if [ ! -f /is-baking ]; then
# Perform the Let's Encrypt certificate issuance
/srv/letsencrypt/letsencrypt-auto certonly --keep --debug --agree-tos --webroot -w /srv/letsencrypt-webroot --email $SSL_EMAIL -d $PHABRICATOR_HOST
/srv/letsencrypt/letsencrypt-auto certonly --text --non-interactive --keep --debug --agree-tos --webroot -w /srv/letsencrypt-webroot --email $SSL_EMAIL -d $PHABRICATOR_HOST
fi

if [ ! -f /baked ]; then
# Add Let's Encrypt issuance to cron.weekly
cat >/etc/cron.weekly/letsencrypt <<EOF
#!bin/bash
/srv/letsencrypt/letsencrypt-auto certonly --text --keep --debug --agree-tos --webroot -w /srv/letsencrypt-webroot --email $SSL_EMAIL -d $PHABRICATOR_HOST
/srv/letsencrypt/letsencrypt-auto certonly --text --non-interactive --keep --debug --agree-tos --webroot -w /srv/letsencrypt-webroot --email $SSL_EMAIL -d $PHABRICATOR_HOST
EOF
chmod a+x /etc/cron.weekly/letsencrypt

Expand Down

0 comments on commit e5fe4ac

Please sign in to comment.