50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
# provision a new sign server.
|
|
# NOTE: this assumes the boxes are already up and are accessible
|
|
# NOTE: most of these vars_path come from group_vars/sign or from hostvars
|
|
#
|
|
# FURTHER NOTE: some of These machines run day to day with sshd disabled/off.
|
|
# Access is via management interface only. This playbook does initial setup.
|
|
# Please check with rel-eng before doing anything here.
|
|
|
|
- name: make sign-vault server vm (secondary and stg only)
|
|
hosts: sign-vault01.stg.iad2.fedoraproject.org
|
|
user: root
|
|
gather_facts: False
|
|
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
|
|
tasks:
|
|
- import_tasks: "{{ tasks_path }}/virt_instance_create.yml"
|
|
|
|
handlers:
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|
|
|
|
- name: make sign vault server
|
|
hosts: sign_vault
|
|
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
|
|
- { role: linux-system-roles.nbde_client, when: datacenter == 'iad2' }
|
|
- { role: serial-console, when: datacenter == 'iad2'}
|
|
- sigul/server
|
|
|
|
pre_tasks:
|
|
- include_vars: dir=/srv/web/infra/ansible/vars/all/ ignore_files=README
|
|
- import_tasks: "{{ tasks_path }}/yumrepos.yml"
|
|
|
|
tasks:
|
|
- import_tasks: "{{ tasks_path }}/motd.yml"
|
|
|
|
handlers:
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|