aboutsummaryrefslogtreecommitdiffstats
path: root/roles/web/templates/acme/renew.sh.j2
blob: 33d5879c4be6936391f00bda60a3f67cbdda3fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
#
# Renew 'acme.sh' issued certificates.
#
# Aaron LI
# 2019-10-03
#

[ $(id -u) -eq 0 ] || {
    echo "ERROR: must be run by root!"
    exit 1
}

su - acme \
    -c "acme.sh --cron --log /var/log/acme.sh.log \
        --config-home {{ web.acme_home }}/.acme.sh \
        --cert-home {{ web.acme_home }}/certs"