Files
fedora-infra_ansible/playbooks/groups/fas.yml
Ricky Elrod a528da29d8 pre_tasks
Signed-off-by: Ricky Elrod <relrod@redhat.com>
2018-05-09 04:48:18 +00:00

41 lines
864 B
YAML

# create a new fas server
- import_playbook: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=fas:fas-stg"
- name: make the box be real
hosts: fas-stg:fas
user: root
gather_facts: True
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "/srv/private/ansible/vars.yml"
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
roles:
- base
- hosts
- rkhunter
- nagios_client
- fas_client
- collectd/base
- rsyncd
- memcached
- mod_wsgi
- fas_server
- fedmsg/base
- sudo
- yubikey
- totpcgi
- { role: openvpn/client, when: env != "staging" }
pre_tasks:
- import_tasks: "{{ tasks_path }}/yumrepos.yml"
tasks:
- import_tasks: "{{ tasks_path }}/2fa_client.yml"
- import_tasks: "{{ tasks_path }}/motd.yml"
handlers:
- import_tasks: "{{ handlers_path }}/restart_services.yml"