blob: e821fbd15503463249a958ab50fcddca915e4e9d (
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
49
50
51
52
53
54
55
56
|
- name: Install public-facing server
hosts: "{{ services.mox.host }}"
become: true
roles:
- dyndns
- tls
- mox
vars_files:
- common.yml
- email.yml
- mox.yml
- network.yml
- name: Install http
hosts: "{{ services.http.host }}"
become: true
roles:
- http
vars_files:
- common.yml
- email.yml
- http.yml
- name: Install ln
hosts: "{{ services.ln.host }}"
become: true
roles:
- ln
vars_files:
- common.yml
- name: Install actualbudget
hosts: "{{ services.actualbudget.host }}"
become: true
roles:
- actualbudget
vars_files:
- common.yml
- actualbudget.yml
- name: Install etherpad
hosts: "{{ services.etherpad.host }}"
become: true
roles:
- etherpad
vars_files:
- common.yml
- etherpad.yml
- name: Install vaultwarden
hosts: "{{ services.vaultwarden.host }}"
become: true
roles:
- vaultwarden
vars_files:
- common.yml
|