40 lines
1,001 B
YAML
40 lines
1,001 B
YAML
- import_playbook: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=kojipkgs"
|
|
|
|
- name: make the boxen be real for real
|
|
hosts: kojipkgs
|
|
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
|
|
- sudo
|
|
- collectd/base
|
|
- apache
|
|
- role: nfs/client
|
|
mnt_dir: '/mnt/fedora_app/app'
|
|
nfs_src_dir: 'fedora_app/app'
|
|
- role: nfs/client
|
|
mnt_dir: '/mnt/fedora_koji'
|
|
nfs_src_dir: 'fedora_koji'
|
|
- role: nfs/client
|
|
mnt_dir: '/pub'
|
|
nfs_src_dir: 'fedora_ftp/fedora.redhat.com/pub'
|
|
- role: kojipkgs
|
|
- role: varnish
|
|
|
|
tasks:
|
|
- include_tasks: "{{ tasks_path }}/yumrepos.yml"
|
|
- include_tasks: "{{ tasks_path }}/2fa_client.yml"
|
|
- include_tasks: "{{ tasks_path }}/motd.yml"
|
|
|
|
handlers:
|
|
- import_tasks: "{{ handllers_path }}/restart_services.yml"
|