Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
Disable self-upgrade feature.
Browse files Browse the repository at this point in the history
  • Loading branch information
brndnmtthws committed Apr 6, 2016
1 parent 1589c33 commit eb60449
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ echo "DOMAIN_ARGS: ${DOMAIN_ARGS}"
echo "DOMAIN_FIRST: ${DOMAIN_FIRST}"

echo "Running letsencrypt-auto to generate initial signed cert"
./letsencrypt-auto certonly --standalone --standalone-supported-challenges http-01 \
$DOMAIN_ARGS --email $LETSENCRYPT_EMAIL --agree-tos --non-interactive --no-redirect \
./letsencrypt-auto --no-self-upgrade certonly --standalone \
--standalone-supported-challenges http-01 $DOMAIN_ARGS \
--email $LETSENCRYPT_EMAIL --agree-tos --non-interactive --no-redirect \
--rsa-key-size 4096 --expand

while [ true ]; do
Expand All @@ -38,5 +39,5 @@ while [ true ]; do
sleep 24h

echo "About to attempt renewal"
./letsencrypt-auto renew
./letsencrypt-auto --no-self-upgrade renew
done

0 comments on commit eb60449

Please sign in to comment.