docker-swag/root/defaults/etc/letsencrypt/renewal-hooks/post/10-nginx

16 lines
411 B
Plaintext
Raw Normal View History

#!/usr/bin/with-contenv bash
2022-11-22 15:55:25 -05:00
# shellcheck shell=bash
2022-11-22 15:55:25 -05:00
# shellcheck source=/dev/null
. /config/.donoteditthisfile.conf
2022-11-29 10:18:56 -05:00
if [[ ! "${ORIGVALIDATION}" = "dns" ]] && [[ ! "${ORIGVALIDATION}" = "duckdns" ]]; then
2023-03-25 12:32:25 -04:00
if pgrep -f "s6-supervise svc-nginx" >/dev/null; then
2023-01-21 09:13:33 -05:00
s6-svc -u /run/service/svc-nginx
fi
else
2023-01-21 09:13:33 -05:00
if pgrep -f "nginx:" >/dev/null; then
s6-svc -h /run/service/svc-nginx
fi
fi