ansible/playbooks/groups/arm-retrace.yml

30 lines
607 B
YAML

- name: Setup arm-retrace hosts
hosts: arm-retrace
user: root
gather_facts: True
tags:
- arm-retrace
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "{{ private }}/vars.yml"
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
roles:
- base
- hosts
- fas_client
- rkhunter
- denyhosts
- nagios_client
- sudo
tasks:
# this is how you include other task lists
- include: "{{ tasks }}/2fa_client.yml"
- include: "{{ tasks }}/motd.yml"
- include: "{{ tasks }}/common_scripts.yml"
handlers:
- include: "{{ handlers }}/restart_services.yml"