initial commit
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
commit
75891c3271
129 changed files with 8046 additions and 0 deletions
46
playbooks/site.yml
Normal file
46
playbooks/site.yml
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
---
|
||||
# Master playbook - runs all components in order
|
||||
# Usage: ansible-playbook playbooks/site.yml
|
||||
#
|
||||
# To run specific components, use tags:
|
||||
# ansible-playbook playbooks/site.yml --tags mail
|
||||
# ansible-playbook playbooks/site.yml --tags monitoring,restic
|
||||
|
||||
- import_playbook: bootstrap.yml
|
||||
tags: [bootstrap, never] # only runs when explicitly tagged
|
||||
|
||||
- import_playbook: docker.yml
|
||||
tags: [docker]
|
||||
|
||||
- import_playbook: nebula.yml
|
||||
tags: [nebula]
|
||||
|
||||
- import_playbook: caddy.yml
|
||||
tags: [caddy]
|
||||
|
||||
- import_playbook: mail.yml
|
||||
tags: [mail]
|
||||
|
||||
- import_playbook: forgejo.yml
|
||||
tags: [forgejo]
|
||||
|
||||
- import_playbook: monitoring.yml
|
||||
tags: [monitoring]
|
||||
|
||||
- import_playbook: tuwunel.yml
|
||||
tags: [tuwunel]
|
||||
|
||||
- import_playbook: radicale.yml
|
||||
tags: [radicale]
|
||||
|
||||
- import_playbook: diun.yml
|
||||
tags: [diun]
|
||||
|
||||
- import_playbook: restic.yml
|
||||
tags: [restic]
|
||||
|
||||
- import_playbook: fail2ban.yml
|
||||
tags: [fail2ban]
|
||||
|
||||
- import_playbook: goaccess.yml
|
||||
tags: [goaccess]
|
||||
Loading…
Add table
Add a link
Reference in a new issue