about summary refs log tree commit diff
path: root/bundles/lhost/items.py
blob: 41b0c91e753a7d03baf4e112763e4d96d9a6c0dc (plain) (blame)
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
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",
    },
    "/usr/bin/lhost-prune": {
        "mode": "0755",
    },
    "/etc/periodic/weekly/lhost-prune": {
        "mode": "0755",
        "source": "cron_job",
    },
}