summaryrefslogtreecommitdiff
path: root/security/letsencrypt.sh/files/000.letsencrypt.sh.in
blob: 25891b4672be352defe90949fead37a88285ff64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# If there is a global system configuration file, suck it in.
#
if [ -r /etc/defaults/periodic.conf ]
then
    . /etc/defaults/periodic.conf
    source_periodic_confs
fi

case "$monthly_letsencrypt_enable" in
    [Yy][Ee][Ss])
	%%PREFIX%%/bin/letsencrypt.sh -c
        ;;
    *)
        ;;
esac