This repository has been archived on 2023-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
max/max.yml
2023-04-12 16:24:01 +02:00

25 lines
559 B
YAML

- name: Setup homeserver
hosts: max
gather_facts: no
pre_tasks:
- name: Wait for host to come up
wait_for:
state: started
port: 22
host: max2.dmz
timeout: 10
connect_timeout: 300
search_regex: OpenSSH
delegate_to: localhost
- name: Wait for cloud-init to finish
command:
cmd: cloud-init status --wait
register: cloudinit
changed_when: "'..' in cloudinit.stdout"
- name: Gather facts
setup:
roles:
- {role: 'docker', tags: 'docker'}
- {role: 'traefik', tags: 'traefik'}