36 lines
1 KiB
YAML
36 lines
1 KiB
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: max.dmz
|
|
timeout: 300
|
|
connect_timeout: 300
|
|
search_regex: OpenSSH
|
|
delegate_to: localhost
|
|
- name: Wait for cloud-init to finish
|
|
shell:
|
|
cmd: "cloud-init status --wait"
|
|
register: cloudinit
|
|
changed_when: "'..' in cloudinit.stdout"
|
|
- name: Gather facts
|
|
setup:
|
|
|
|
roles:
|
|
- {role: 'watchtower', tags: 'watchtower'}
|
|
- {role: 'forgejo', tags: 'forgejo'}
|
|
- {role: 'syncthing', tags: 'syncthing'}
|
|
- {role: 'kms', tags: 'kms'}
|
|
- {role: 'cyberchef', tags: 'cyberchef'}
|
|
- {role: 'radicale', tags: 'radicale'}
|
|
- {role: 'mastodon', tags: 'mastodon'}
|
|
- {role: 'seafile', tags: 'seafile'}
|
|
- {role: 'jitsi', tags: 'jitsi'}
|
|
- {role: 'freshrss', tags: 'freshrss'}
|
|
- {role: 'static', tags: 'static'}
|
|
- {role: 'inbucket', tags: 'inbucket'}
|
|
- {role: 'prometheus', tags: 'prometheus'}
|