Files
ansible_linux_setup/test.yml
2021-03-01 00:16:45 +00:00

9 lines
148 B
YAML

---
- hosts: all
tasks:
- name: Test task to create a file
ansible.builtin.file:
path: /root/test_file
state: touch
...