ansible/playbooks/groups/arm-qa.yml
Kevin Fenzi 2f35b45dfc Drop denyhosts role.
We never used it on rhel7 hosts, and don't want to bother on rhel6/fedora either anymore.
2016-01-05 21:05:35 +00:00

29 lines
533 B
YAML

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