Skip to content

Commit b57f132

Browse files
authored
Add --no-bootstrap to certbot-auto
--no-bootstrap: prevent the certbot-auto script from installing OS-level dependencies (should prevent 'delaying package configuration, since apt-utils is not installed')
1 parent 97908eb commit b57f132

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

certbot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ printf "${GREEN}Docker Flow: Let's Encrypt started${NC}\n";
1515
printf "We will use $CERTBOT_EMAIL for certificate registration with certbot. This e-mail is used by Let's Encrypt when you lose the account and want to get it back.\n";
1616

1717
#common arguments
18-
args=("--no-self-upgrade" "--standalone" "--non-interactive" "--expand" "--keep-until-expiring" "--email" "$CERTBOT_EMAIL" "--agree-tos" "--preferred-challenges" "http-01" "--rsa-key-size" "4096" "--redirect" "--hsts" "--staple-ocsp")
18+
args=("--no-self-upgrade" "--no-bootstrap" "--standalone" "--non-interactive" "--expand" "--keep-until-expiring" "--email" "$CERTBOT_EMAIL" "--agree-tos" "--preferred-challenges" "http-01" "--rsa-key-size" "4096" "--redirect" "--hsts" "--staple-ocsp")
1919

2020
#if we are in a staging enviroment append the staging argument, the staging argument
2121
#was previously set to an empty string if the staging enviroment was not used

0 commit comments

Comments
 (0)