blob: a4086721a2fcd489fc8f9a4e21ed2df8c24aeb14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
****************************************************************************
After installing anvil, this is a short checklist of things to do, depending
on which tools are using.
For cert-puller:
* adjust /usr/local/etc/anvil/cert-puller.conf
* run 'cert-puller -s' to see the visudo settings you need
* adjust the service configuration files (e.g. httpd.conf) if cert filenames
are different from defaults. By default, anvil uses:
* example.org.fullchain.cer
* example.org.key
* anvil does not distribute .key files. Do that manually.
* install the crontab for anvil: sudo crontab -u anvil -e
###
# use /bin/sh to run commands, overriding the default set by cron
SHELL=/bin/sh
# mail any output to here, no matter whose crontab this is
MAILTO=you@example.org
7 13 * * * /usr/local/bin/cert-puller
###
For cert-shifter:
* adjust /usr/local/etc/anvil/cert-shifter.conf
* install the crontab for anvil: sudo crontab -u anvil -e
###
# use /bin/sh to run commands, overriding the default set by cron
SHELL=/bin/sh
# mail any output to here, no matter whose crontab this is
MAILTO=you@example.org
19 20 * * * /usr/local/bin/cert-shifter
###
****************************************************************************
|