mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-24 14:00:44 +08:00
65 lines
1.4 KiB
YAML
65 lines
1.4 KiB
YAML
- name: make statscache server
|
|
hosts: statscache;statscache-stg
|
|
user: root
|
|
gather_facts: False
|
|
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
|
|
tasks:
|
|
- include: "{{ tasks }}/virt_instance_create.yml"
|
|
|
|
handlers:
|
|
- include: "{{ handlers }}/restart_services.yml"
|
|
|
|
- name: make the box be real
|
|
hosts: statscache;statscache-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
|
|
- { role: denyhosts, when: ansible_distribution_major_version|int != 7 }
|
|
- nagios_client
|
|
- hosts
|
|
- fas_client
|
|
- collectd/base
|
|
- rsyncd
|
|
- sudo
|
|
- apache
|
|
- fedmsg/base
|
|
|
|
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"
|
|
|
|
#- name: dole out the service specific config
|
|
# hosts: statscache;statscache-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:
|
|
# - statscache
|
|
#
|
|
# handlers:
|
|
# - include: "{{ handlers }}/restart_services.yml"
|
|
|