26 lines
636 B
YAML
26 lines
636 B
YAML
|
- name: Setup Docker
|
||
|
hosts: joplin
|
||
|
gather_facts: false
|
||
|
tasks:
|
||
|
- name: Debug
|
||
|
ansible.builtin.debug:
|
||
|
msg: "{{ inventory_hostname }}"
|
||
|
- name: Wait for connection
|
||
|
ansible.builtin.wait_for:
|
||
|
host: "{{ inventory_hostname }}"
|
||
|
port: 22
|
||
|
timeout: 300
|
||
|
- name: Wut
|
||
|
ansible.builtin.shell: |
|
||
|
ping -c 5 {{ inventory_hostname }}
|
||
|
args:
|
||
|
executable: /bin/bash
|
||
|
delegate_to: localhost
|
||
|
- name: Test some stuff
|
||
|
ansible.builtin.shell: |
|
||
|
touch ~/hmm
|
||
|
echo test > ~/test
|
||
|
echo test2 >> ~/test
|
||
|
args:
|
||
|
executable: /bin/bash
|