migrated notes from infra/hosts motd changes; excluding CSI infos removed csi_* vars from group_vars; converted csi_purpose & csi_relationship into notes fixed merge conflicts minor changes; var updating YAMLs & playbooks udpated YAMLs & playbooks again updated correctly; buildhw.yml fixing merge conflicts dest added in motd.yml
27 lines
699 B
YAML
27 lines
699 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:
|
|
- include_role: name=copr/reboot
|
|
tags: always
|
|
- 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
|
|
|
|
handlers:
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|