34 lines
789 B
YAML
34 lines
789 B
YAML
- include: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=koschei:koschei-stg"
|
|
|
|
- name: install koschei
|
|
hosts: koschei:koschei-stg
|
|
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
|
|
- rkhunter
|
|
- nagios_client
|
|
- hosts
|
|
- fas_client
|
|
- builder_repo
|
|
- collectd/base
|
|
- apache
|
|
- koschei
|
|
- fedmsg/base
|
|
- sudo
|
|
- { role: openvpn/client, when: env != "staging" }
|
|
|
|
tasks:
|
|
- include: "{{ tasks }}/yumrepos.yml"
|
|
- include: "{{ tasks }}/2fa_client.yml"
|
|
- include: "{{ tasks }}/motd.yml"
|
|
- include: "{{ tasks }}/mod_wsgi.yml"
|
|
|
|
handlers:
|
|
- include: "{{ handlers }}/restart_services.yml"
|