mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-13 10:09:53 +08:00
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
# create a new wiki server
|
|
#
|
|
# These servers run mediawiki for the main fedora wiki instance.
|
|
#
|
|
|
|
- include: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=wiki:wiki-stg"
|
|
|
|
- name: make the box be real
|
|
hosts: wiki:wiki-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
|
|
|
|
pre_tasks:
|
|
- include: "{{ tasks }}/yumrepos.yml"
|
|
|
|
roles:
|
|
- base
|
|
- rkhunter
|
|
- nagios/client
|
|
- hosts
|
|
- fas_client
|
|
- collectd/base
|
|
- apache
|
|
- fedmsg/base
|
|
- { role: nfs/client, when: env == "staging", mnt_dir: '/mnt/web/attachments', nfs_src_dir: 'fedora_app_staging/app/attachments' }
|
|
- { role: nfs/client, when: env != "staging", mnt_dir: '/mnt/web/attachments', nfs_src_dir: 'fedora_app/app/attachments' }
|
|
- { role: mediawiki, when: env != "staging" }
|
|
- { role: mediawiki, when: env == "staging" }
|
|
- sudo
|
|
- { role: openvpn/client,
|
|
when: env != "staging" }
|
|
|
|
tasks:
|
|
- include: "{{ tasks }}/2fa_client.yml"
|
|
- include: "{{ tasks }}/motd.yml"
|
|
|
|
handlers:
|
|
- include: "{{ handlers }}/restart_services.yml"
|