2023-05-17 18:14:05 -07:00
|
|
|
- import_playbook: "/srv/web/infra/ansible/playbooks/include/virt-create.yml"
|
|
|
|
vars:
|
2023-05-18 15:28:34 -04:00
|
|
|
myhosts: "bastion"
|
2014-10-08 22:37:24 +00:00
|
|
|
|
|
|
|
- name: make the boxen be real for real
|
2015-04-30 23:00:34 +00:00
|
|
|
hosts: bastion
|
2014-10-08 22:37:24 +00:00
|
|
|
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-10-08 22:37:24 +00:00
|
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
|
|
|
|
|
|
roles:
|
|
|
|
- base
|
|
|
|
- rkhunter
|
2021-05-05 15:39:18 -07:00
|
|
|
- { role: openvpn/client, when: inventory_hostname == 'bastion13.fedoraproject.org' }
|
2021-05-05 15:01:58 -07:00
|
|
|
- openvpn/server
|
2021-05-05 15:22:57 -07:00
|
|
|
- ipa/client
|
2017-05-05 22:12:33 +00:00
|
|
|
- nagios_client
|
2014-10-08 22:37:24 +00:00
|
|
|
- hosts
|
|
|
|
- sudo
|
|
|
|
- collectd/base
|
2020-06-11 15:31:54 -07:00
|
|
|
- packager_alias
|
2017-02-14 19:33:55 +00:00
|
|
|
- opendkim
|
2021-03-25 13:28:09 -07:00
|
|
|
- fasjson
|
2014-10-08 22:37:24 +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-10-08 22:37:24 +00:00
|
|
|
|
|
|
|
handlers:
|
2017-10-15 20:33:11 +00:00
|
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|
2015-04-30 23:05:06 +00:00
|
|
|
|