This repository has been archived on 2023-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
hermes/ansible.yml

19 lines
348 B
YAML
Raw Normal View History

2023-03-11 17:04:58 +00:00
---
2023-03-11 16:18:23 +00:00
- hosts: all
2023-03-11 17:04:58 +00:00
gather_facts: no
2023-03-11 16:18:23 +00:00
tasks:
2023-03-11 17:04:58 +00:00
- name: Wait for system to become reachable
wait_for_connection:
- name: Gather facts for the first time
setup:
2023-03-11 16:18:23 +00:00
- name: ensure file exists
copy:
content: ""
dest: /root/testje
force: false
group: sys
owner: root
mode: 0555