mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-12 10:56:20 +08:00
27 lines
691 B
YAML
27 lines
691 B
YAML
- name: Setup copr hypervisor hosts
|
|
hosts: copr_hypervisor
|
|
user: root
|
|
gather_facts: True
|
|
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "{{ private }}/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
|
|
pre_tasks:
|
|
- import_tasks: "{{ tasks_path }}/yumrepos.yml"
|
|
|
|
tasks:
|
|
- import_role: name=base
|
|
- import_role: name=hosts
|
|
- import_role: name=rkhunter
|
|
- import_role: name=nagios_client
|
|
- import_role: name=openvpn/client
|
|
- import_role: name=ipa/client
|
|
- import_role: name=copr/hypervisor
|
|
|
|
- import_tasks: "{{ tasks_path }}/motd.yml"
|
|
|
|
handlers:
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|