fix: also in skel
This commit is contained in:
parent
b85e943fd1
commit
3d6ab17df2
1 changed files with 11 additions and 4 deletions
|
@ -4,9 +4,16 @@ trap exit TERM
|
||||||
|
|
||||||
if [ -n "${CERTBOT_DOMAINS}" ]; then
|
if [ -n "${CERTBOT_DOMAINS}" ]; then
|
||||||
echo "registering..."
|
echo "registering..."
|
||||||
certbot --nginx -n --keep --agree-tos \
|
if ! certbot show_account; then
|
||||||
-m "${CERTBOT_EMAIL}" \
|
certbot register -n \
|
||||||
-d "${CERTBOT_DOMAINS}"
|
--agree-tos \
|
||||||
|
-m "${CERTBOT_EMAIL}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
for d in $(echo "${CERTBOT_DOMAINS}" | sed 's/,/ /g'); do
|
||||||
|
echo "requesting for $d..."
|
||||||
|
certbot --nginx -n --keep -d "$d"
|
||||||
|
done
|
||||||
|
|
||||||
while :; do
|
while :; do
|
||||||
echo "renewing domains..."
|
echo "renewing domains..."
|
||||||
|
@ -18,4 +25,4 @@ else
|
||||||
echo "skipping certbot due to no domains!"
|
echo "skipping certbot due to no domains!"
|
||||||
fi &
|
fi &
|
||||||
|
|
||||||
exec "$@"
|
exec "$@"
|
Loading…
Reference in a new issue