summaryrefslogtreecommitdiffstats
path: root/playbooks/groups/arm-qa.yml
blob: f97485a94d0e3981b4e054a11f34c45894400bad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

- 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_path }}/yumrepos.yml"

  roles:
  - base
  - rkhunter
  - hosts
  - fas_client
  - sudo

  tasks:
  # this is how you include other task lists
  - include: "{{ tasks_path }}/motd.yml"

  handlers:
  - include: "{{ handlers_path }}/restart_services.yml"