14 lines
352 B
Plaintext
14 lines
352 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
. /config/.donoteditthisfile.conf
|
|
|
|
if [ "$ORIGVALIDATION" = "dns" ] || [ "$ORIGVALIDATION" = "duckdns" ]; then
|
|
if ps aux | grep [n]ginx: > /dev/null; then
|
|
s6-svc -h /var/run/s6/services/nginx
|
|
fi
|
|
else
|
|
if ps aux | grep 's6-supervise nginx' | grep -v grep > /dev/null; then
|
|
s6-svc -u /var/run/s6/services/nginx
|
|
fi
|
|
fi
|