mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-26 03:23:08 +08:00
38 lines
1.0 KiB
YAML
38 lines
1.0 KiB
YAML
# create a new backup server system
|
|
# NOTE: should be used with --limit most of the time
|
|
# NOTE: make sure there is room/space for this instance on the buildvmhost
|
|
# NOTE: most of these vars_path come from group_vars/backup_server or from hostvars
|
|
|
|
- name: make backup server system
|
|
hosts: backup01.phx2.fedoraproject.org
|
|
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
|
|
- { role: nfs/client,
|
|
mnt_dir: '/fedora_backups',
|
|
nfs_mount_opts: "rw,hard,bg,intr,noatime,nodev,nosuid,nfsvers=4",
|
|
nfs_src_dir: 'fedora_backups' }
|
|
- openvpn/client
|
|
|
|
tasks:
|
|
- include: "{{ tasks }}/yumrepos.yml"
|
|
- include: "{{ tasks }}/2fa_client.yml"
|
|
- include: "{{ tasks }}/motd.yml"
|
|
- include: "{{ tasks }}/rdiff_backup_server.yml"
|
|
|
|
handlers:
|
|
- include: "{{ handlers }}/restart_services.yml"
|