-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
run.yml
418 lines (399 loc) · 10.1 KB
/
run.yml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
---
- hosts: all
become: true
tasks:
# Ubuntu
- name: Set timezone
timezone:
name: "{{ ntp_timezone }}"
when: ansible_distribution == 'Ubuntu'
- name: Remove Ubuntu motd spam
file:
path: "/etc/update-motd.d/{{ item }}"
state: absent
loop:
- 80-livepatch
- 95-hwe-eol
- 50-motd-news
- 10-help-text
- 88-esm-announce
- 91-contract-ua-esm-status
when: ansible_distribution == 'Ubuntu'
- name: Remove Ubuntu Snap
apt:
name: snapd
state: absent
purge: true
when: ansible_distribution == 'Ubuntu'
# Fedora
- name: Install the rpmfusion and fonts repo packages
dnf:
state: present
disable_gpg_check: yes
name:
- https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ ansible_facts.distribution_version }}.noarch.rpm
- https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-{{ ansible_facts.distribution_version }}.noarch.rpm
become: yes
when: ansible_distribution == 'Fedora'
- name: Improve DNF Performances
blockinfile:
path: /etc/dnf/dnf.conf
create: yes
block: |
[main]
gpgcheck=1
installonly_limit=3
clean_requirements_on_remove=True
best=False
skip_if_unavailable=True
fastestmirror=1
max_parallel_downloads=10
deltarpm=true
become: yes
when: ansible_distribution == 'Fedora'
- name: Upgrade all packages
ansible.builtin.dnf:
name: "*"
state: latest
when: ansible_distribution == 'Fedora'
- hosts: adonalsium
become: true
vars_files:
- 'vars/vault.yaml'
pre_tasks:
- name: Remove enterprise repo
file:
state: absent
path: /etc/apt/sources.list.d/pve-enterprise.list
- name: Switch to community repo
apt_repository:
repo: 'deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription'
state: present
- name: Apt update
apt:
upgrade: 'yes'
update_cache: yes
cache_valid_time: 3600
roles:
- role: install/nag_removal
- role: grog.package
- role: geerlingguy.pip
- role: install/pip_packages
- role: geerlingguy.samba
- role: geerlingguy.nfs
- role: install/mergerfs
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: install/zsh
- role: adonalsium
- role: bash_alias
- role: cronjobs
- role: geerlingguy.docker
- role: geerlingguy.ntp
- role: install/lnxlink
- role: ironicbadger.docker_compose_generator
- role: ironicbadger.snapraid
- hosts: ishap
become: true
vars_files:
- 'vars/vault.yaml'
pre_tasks:
- name: Remove enterprise repo
file:
state: absent
path: /etc/apt/sources.list.d/pve-enterprise.list
- name: Switch to community repo
apt_repository:
repo: 'deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription'
state: present
- name: Apt update
apt:
upgrade: 'yes'
update_cache: yes
cache_valid_time: 3600
roles:
- role: install/nag_removal
- role: grog.package
- role: geerlingguy.pip
- role: install/pip_packages
- role: geerlingguy.nfs
- role: install/mergerfs
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: install/zsh
- role: ishap
- role: bash_alias
- role: cronjobs
- role: geerlingguy.docker
- role: geerlingguy.ntp
- role: ironicbadger.docker_compose_generator
- role: ironicbadger.snapraid
### LXCs/VMs/VPS
- hosts: dominion
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: geerlingguy.pip
- role: install/pip_packages
- role: github
- role: install/bitwarden_cli
- role: install/runitor
- role: install/zsh
- role: dominion
- role: bash_alias
- role: cronjobs
- hosts: endowment
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: geerlingguy.samba
- role: geerlingguy.docker
- role: geerlingguy.pip
- role: fuzzymistborn.autorestic
- role: install/lnxlink
- role: install/runitor
- role: install/zsh
- role: endowment
- role: bash_alias
- role: cronjobs
- role: ironicbadger.docker_compose_generator
- hosts: autonomy
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: github
- role: geerlingguy.docker
- role: geerlingguy.pip
- role: install/pip_packages
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: install/zsh
- role: autonomy
- role: bash_alias
- role: cronjobs
- role: install/lnxlink
- role: ironicbadger.docker_compose_generator
- hosts: unity
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: geerlingguy.docker
- role: geerlingguy.pip
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: install/zsh
- role: unity
- role: bash_alias
- role: install/tailscale
- role: install/lnxlink
- role: cronjobs
- role: ironicbadger.docker_compose_generator
- hosts: virtuosity
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: geerlingguy.docker
- role: geerlingguy.pip
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: install/zsh
- role: virtuosity
- role: bash_alias
- role: cronjobs
- role: install/lnxlink
- role: ironicbadger.docker_compose_generator
- hosts: cultivation
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: geerlingguy.docker
- role: geerlingguy.pip
- role: fuzzymistborn.autorestic
- role: install/lnxlink
- role: install/runitor
- role: install/zsh
- role: cultivation
- role: bash_alias
- role: cronjobs
- role: ironicbadger.docker_compose_generator
- hosts: preservation
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: geerlingguy.docker
- role: geerlingguy.pip
- role: fuzzymistborn.autorestic
- role: install/lnxlink
- role: install/runitor
- role: install/zsh
- role: ironicbadger.docker_compose_generator
- role: preservation
- role: bash_alias
- role: cronjobs
- hosts: honor
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: geerlingguy.pip
- role: geerlingguy.docker
- role: install/lego
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: caddy_ansible.caddy_ansible
- role: install/zsh
- role: honor
- role: bash_alias
- role: cronjobs
- role: ironicbadger.docker_compose_generator
- role: install/crowdsec_bouncer
- hosts: omada
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: geerlingguy.pip
- role: geerlingguy.docker
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: install/zsh
- role: omada
- role: bash_alias
- role: cronjobs
- role: ironicbadger.docker_compose_generator
- hosts: invention
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: geerlingguy.pip
- role: geerlingguy.docker
- role: install/zsh
- role: invention
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: bash_alias
- role: ironicbadger.docker_compose_generator
- hosts: identity
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: geerlingguy.pip
- role: geerlingguy.docker
- role: install/zsh
- role: identity
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: install/lnxlink
- role: bash_alias
- role: ironicbadger.docker_compose_generator
- hosts: investiture
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: geerlingguy.pip
- role: geerlingguy.docker
- role: install/runitor
- role: install/zsh
- role: bash_alias
- role: ironicbadger.docker_compose_generator
- role: cronjobs
- hosts: ambition
become: true
vars_files:
- 'vars/vault.yaml'
roles:
- role: grog.package
- role: geerlingguy.pip
- role: geerlingguy.docker
- role: install/lego
- role: install/tailscale
- role: install/zsh
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: ironicbadger.docker_compose_generator
- role: ambition
- role: caddy_ansible.caddy_ansible
- role: install/crowdsec_bouncer
- role: bash_alias
- role: cronjobs
### Desktops
- hosts: vasher
become: true
vars_files:
- 'vars/vault.yaml'
- 'group_vars/desktop.yml'
- 'group_vars/vasher.yml'
roles:
- role: grog.package
- role: geerlingguy.pip
- role: install/pip_packages
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: desktop
- role: install/zsh
- role: bash_alias
- hosts: szeth
become: true
vars_files:
- 'vars/vault.yaml'
- 'group_vars/desktop.yml'
- 'group_vars/szeth.yml'
roles:
- role: grog.package
- role: geerlingguy.pip
- role: install/pip_packages
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: desktop
- role: install/zsh
- role: bash_alias
- hosts: design
become: true
vars_files:
- 'vars/vault.yaml'
- 'group_vars/design.yml'
roles:
- role: grog.package
- role: geerlingguy.pip
- role: install/pip_packages
- role: design
- role: bash_alias
- role: install/zsh
- hosts: hoid
become: true
vars_files:
- 'vars/vault.yaml'
- 'group_vars/desktop.yml'
- 'group_vars/hoid.yml'
roles:
- role: grog.package
- role: geerlingguy.pip
- role: install/pip_packages
- role: fuzzymistborn.autorestic
- role: install/runitor
- role: desktop
- role: install/zsh
- role: bash_alias
- role: cronjobs