From 60ff17bceaf13cdc254d836cc38f28afdc1f29d4 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Fri, 9 May 2014 20:42:29 +0000 Subject: [PATCH] Add a arm-retrace playbook. --- playbooks/groups/arm-retrace.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 playbooks/groups/arm-retrace.yml diff --git a/playbooks/groups/arm-retrace.yml b/playbooks/groups/arm-retrace.yml new file mode 100644 index 0000000000..2e9f683a15 --- /dev/null +++ b/playbooks/groups/arm-retrace.yml @@ -0,0 +1,31 @@ + +- 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 + - fas_client + - rkhunter + - denyhosts + - nagios_client + + tasks: + # this is how you include other task lists + - include: "{{ tasks }}/hosts.yml" + - include: "{{ tasks }}/2fa_client.yml" + - include: "{{ tasks }}/motd.yml" + - include: "{{ tasks }}/common_scripts.yml" + - include: "{{ tasks }}/sudo.yml" + - include: "{{ tasks }}/koji/releng_config.yml" + + handlers: + - include: "{{ handlers }}/restart_services.yml"