kovalhome/infra/joplin/0001_docker_playbook.yaml

16 lines
349 B
YAML
Raw Normal View History

2023-09-04 21:14:10 +00:00
- name: Setup Docker
2023-09-04 21:19:50 +00:00
hosts: joplin
2023-09-04 21:20:12 +00:00
roles: [managed]
2023-09-04 21:23:12 +00:00
gather_facts: false
2023-09-04 21:14:10 +00:00
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