1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-09-28 18:31:59 +02:00
infrastructure/playbooks/all-hosts-basic.yml
Jelle van der Waa 2be002b112
Remove zabbix-agent role everywhere
We switched for monitoring to prometheus so zabbix-agent is unwanted and
we don't want to accidently deploy it again.
2020-09-12 17:22:09 +02:00

16 lines
444 B
YAML

---
- name: basic setup for all hosts
hosts: all,!hetzner_storageboxes,!rsync_net
remote_user: root
roles:
- { role: common }
- { role: tools }
- { role: firewalld }
- { role: unbound }
# reconfiguring sshd may break the AUR on luna (unchecked)
#- { role: sshd, tags: ['sshd'] }
- { role: root_ssh }
- { role: borg_client, tags: ["borg"], when: "'borg_clients' in group_names" }
- { role: hardening }