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