43 lines
987 B
YAML
43 lines
987 B
YAML
- include: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=badges-web;badges-web-stg"
|
|
|
|
- name: make the box be real
|
|
hosts: torrent
|
|
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
|
|
- hosts
|
|
- rkhunter
|
|
- nagios_client
|
|
- fas_client
|
|
- collectd/base
|
|
- rsyncd
|
|
- sudo
|
|
- openvpn/client
|
|
- torrent
|
|
- apache
|
|
|
|
- role: httpd/mod_ssl
|
|
|
|
- role: httpd/certificate
|
|
name: wildcard-2014.fedoraproject.org
|
|
SSLCertificateChainFile: wildcard-2014.fedoraproject.org.intermediate.cert
|
|
|
|
- role: httpd/website
|
|
name: torrent.fedoraproject.org
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
sslonly: true
|
|
|
|
tasks:
|
|
- include: "{{ tasks }}/yumrepos.yml"
|
|
- include: "{{ tasks }}/2fa_client.yml"
|
|
- include: "{{ tasks }}/motd.yml"
|
|
|
|
handlers:
|
|
- include: "{{ handlers }}/restart_services.yml"
|