38 lines
919 B
YAML
38 lines
919 B
YAML
- name: check/create instance
|
|
hosts: bodhi.dev.fedoraproject.org
|
|
user: root
|
|
gather_facts: False
|
|
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "{{ private }}/vars.yml"
|
|
|
|
tasks:
|
|
- include: "{{ tasks }}/persistent_cloud.yml"
|
|
- include: "{{ tasks }}/growroot_cloud.yml"
|
|
|
|
- name: provision instance
|
|
hosts: bodhi.dev.fedoraproject.org
|
|
user: root
|
|
gather_facts: True
|
|
vars:
|
|
- tcp_ports: [22, 443]
|
|
- udp_ports: []
|
|
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "{{ private }}/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
|
|
tasks:
|
|
- include: "{{ tasks }}/cloud_setup_basic.yml"
|
|
- include: "{{ tasks }}/postfix_basic.yml"
|
|
|
|
# open up tcp ports
|
|
- name: poke holes in the firewall
|
|
action: command lokkit -p '{{ item }}:tcp'
|
|
with_items:
|
|
- "{{ tcp_ports }}"
|
|
|
|
handlers:
|
|
- include: "{{ handlers }}/restart_services.yml"
|