1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-09-20 10:41:47 +02:00
infrastructure/playbooks/all-hosts-basic.yml

17 lines
695 B
YAML
Raw Normal View History

---
- name: basic setup for all hosts
hosts: all
remote_user: root
roles:
2017-09-04 12:52:02 +02:00
- { role: common, tags: ['common'] }
- { role: tools, tags: ['tools'] }
# reconfiguring sshd may break the AUR on luna (unchecked)
#- { role: sshd, tags: ['sshd'] }
- { role: root_ssh, tags: ['root_ssh'] }
# borg-client needs to be adapted to use the hostname instead of hardcoded values
# here. this also probably doesn't work nicely for old hosts yet
- { role: borg-client, tags: ["borg"], when: "'borg-clients' in group_names" }
- { role: zabbix-agent, tags: ["zabbix", "zabbix-agent"], when: "'unmanaged' not in group_names" }
- { role: firewalld, tags: ['firewalld'] }