docker-swag/root/defaults/etc/letsencrypt/renewal-hooks/pre/10-nginx
2022-11-22 20:55:25 +00:00

12 lines
280 B
Plaintext

#!/usr/bin/with-contenv bash
# shellcheck shell=bash
# shellcheck source=/dev/null
. /config/.donoteditthisfile.conf
if [ ! "${ORIGVALIDATION}" = "dns" ] && [ ! "${ORIGVALIDATION}" = "duckdns" ]; then
if pgrep -f "nginx:" >/dev/null; then
s6-svc -d /run/service/nginx
fi
fi