62 lines
1.7 KiB
YAML
62 lines
1.7 KiB
YAML
- include: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=secondary"
|
|
|
|
- name: setup secondary arch download server
|
|
hosts: secondary
|
|
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
|
|
- collectd/base
|
|
- download
|
|
- rsyncd
|
|
- sudo
|
|
- { role: nfs/client,
|
|
mnt_dir: '/srv/pub/archive',
|
|
nfs_src_dir: 'fedora_ftp/fedora.redhat.com/pub/archive' }
|
|
- { role: nfs/client,
|
|
mnt_dir: '/srv/pub/alt',
|
|
nfs_mount_opts: "rw,hard,bg,intr,noatime,nodev,nosuid,nfsvers=3",
|
|
nfs_src_dir: 'fedora_ftp/fedora.redhat.com/pub/alt' }
|
|
- { role: nfs/client,
|
|
mnt_dir: '/srv/pub/fedora-secondary',
|
|
nfs_mount_opts: "rw,hard,bg,intr,noatime,nodev,nosuid,nfsvers=3",
|
|
nfs_src_dir: 'fedora_ftp/fedora.redhat.com/pub/fedora-secondary' }
|
|
|
|
- role: apache
|
|
|
|
- role: httpd/mod_ssl
|
|
|
|
- role: httpd/certificate
|
|
name: wildcard-2014.fedoraproject.org
|
|
SSLCertificateChainFile: wildcard-2014.fedoraproject.org.intermediate.cert
|
|
|
|
- role: httpd/website
|
|
name: secondary.fedoraproject.org
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
server_aliases:
|
|
- alt.fedoraproject.org
|
|
- archive.fedoraproject.org
|
|
- archives.fedoraproject.org
|
|
tasks:
|
|
- include: "{{ tasks }}/yumrepos.yml"
|
|
- include: "{{ tasks }}/2fa_client.yml"
|
|
- include: "{{ tasks }}/motd.yml"
|
|
|
|
- name: Install some misc packages needed for various tasks
|
|
yum: pkg={{ item }} state=present
|
|
with_items:
|
|
- createrepo
|
|
- koji
|
|
|
|
handlers:
|
|
- include: "{{ handlers }}/restart_services.yml"
|