diff options
author | Aaron LI <aly@aaronly.me> | 2018-03-14 17:16:55 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-03-14 17:16:55 +0800 |
commit | 4e4575924b61d26c9e3e0d0770fc2908ac192f7f (patch) | |
tree | 93c5440d8550dca216398c68f0d437254d6574b5 /roles/web/files/acme/deploy.sh | |
parent | 126ad0728f1029e49e7eb5071d2a0788b239e64f (diff) | |
download | ansible-dfly-vps-4e4575924b61d26c9e3e0d0770fc2908ac192f7f.tar.bz2 |
web/acme: refactor certificates deployment
Diffstat (limited to 'roles/web/files/acme/deploy.sh')
-rwxr-xr-x | roles/web/files/acme/deploy.sh | 45 |
1 files changed, 35 insertions, 10 deletions
diff --git a/roles/web/files/acme/deploy.sh b/roles/web/files/acme/deploy.sh index 5e5ad4d..7464d02 100755 --- a/roles/web/files/acme/deploy.sh +++ b/roles/web/files/acme/deploy.sh @@ -1,22 +1,47 @@ #!/bin/sh -e # -# Restart the services after renewing the certificate(s) to deploy the -# changed certificate(s). -# -# This script will be weekly executed. See "/etc/periodic.conf". +# Deploy the renewed certificate(s) to services. # # Aaron LI # -# Services to be restarted after ACME certificate update -SERVICES="nginx dovecot postfix" +reload() { + local srv="$1" + local rv=0 + if service ${srv} status >/dev/null 2>&1; then + echo "Reloading service ${srv} ..." + service ${srv} reload + echo "ok" + else + echo "WARNING: service ${srv} is not running" >&2 + rv=1 + fi + return ${rv} +} + -printf "-------------------------------------------------------------\n" -for srv in ${SERVICES}; do +restart() { + local srv="$1" + local rv=0 if service ${srv} status >/dev/null 2>&1; then - echo "ACME deploy: restarting ${srv} ..." + echo "Restarting service ${srv} ..." service ${srv} restart + echo "ok" else - echo "ACME deploy: service ${srv} not running" + echo "WARNING: service ${srv} is not running" >&2 + rv=1 + fi + return ${rv} +} + + +echo "=============================================================" +dir="${0%/*}" +rv=0 +for f in ${dir}/deploy.d/*; do + if [ -f "${f}" ]; then + echo "Deploying [${f##*/}] ..." + . "${f}" || rv=$? fi done +exit ${rv} |