kovalhome/infra/joplin/0001_docker_playbook.yaml

15 lines
330 B
YAML

- name: Setup Docker
hosts: joplin
gather_facts: false
tasks:
- name: Wait for connection
ansible.builtin.wait_for:
timeout: 300
- name: Test some stuff
ansible.builtin.shell: |
touch ~/hmm
echo test > ~/test
echo test2 >> ~/test
args:
executable: /bin/bash