2023-05-18 15:28:34 -04:00
|
|
|
- import_playbook: "/srv/web/infra/ansible/playbooks/include/virt-create.yml"
|
|
|
|
vars:
|
|
|
|
myhosts: "unbound"
|
2014-02-11 17:25:56 +00:00
|
|
|
|
|
|
|
- name: make the box be real
|
|
|
|
hosts: unbound
|
|
|
|
user: root
|
|
|
|
gather_facts: True
|
|
|
|
|
|
|
|
vars_files:
|
|
|
|
- /srv/web/infra/ansible/vars/global.yml
|
2015-01-09 22:59:18 +00:00
|
|
|
- "/srv/private/ansible/vars.yml"
|
2014-02-11 17:25:56 +00:00
|
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
|
|
|
|
|
|
roles:
|
|
|
|
- base
|
|
|
|
- rkhunter
|
2017-05-05 22:12:33 +00:00
|
|
|
- nagios_client
|
2014-06-23 00:49:31 +00:00
|
|
|
- hosts
|
2021-03-24 13:43:28 +01:00
|
|
|
- { role: openvpn/client,
|
|
|
|
when: env != "staging" }
|
2021-03-19 17:25:38 +01:00
|
|
|
- ipa/client
|
2014-03-21 13:41:06 +00:00
|
|
|
- collectd/base
|
2014-02-11 17:25:56 +00:00
|
|
|
- unbound
|
2014-06-14 20:58:52 +00:00
|
|
|
- sudo
|
2014-02-11 17:25:56 +00:00
|
|
|
|
2018-10-30 18:28:26 +00:00
|
|
|
pre_tasks:
|
2017-10-17 17:37:03 +00:00
|
|
|
- import_tasks: "{{ tasks_path }}/yumrepos.yml"
|
2018-10-30 18:28:26 +00:00
|
|
|
|
|
|
|
tasks:
|
2017-10-17 17:37:03 +00:00
|
|
|
- import_tasks: "{{ tasks_path }}/motd.yml"
|
2014-02-11 17:25:56 +00:00
|
|
|
|
|
|
|
handlers:
|
2017-10-15 20:33:11 +00:00
|
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|