1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
directories = {
"/var/www/lhost": {
"mode": "0775",
"group": "www-data",
"owner": "webdeploy",
},
}
files = {
"/var/www/lhost/Caddyfile": {},
"/etc/traefik/lhost.yaml": {
"content_type": "mako",
"source": "traefik.yaml",
"needs": {
"bundle:traefik",
},
},
"/etc/s6-rc/lhost.conf": {
"content_type": "mako",
},
"/etc/periodic/weekly/lhost-prune": {
"mode": "0755",
},
}
|