9 lines
148 B
YAML
9 lines
148 B
YAML
---
|
|
- hosts: all
|
|
tasks:
|
|
- name: Test task to create a file
|
|
ansible.builtin.file:
|
|
path: /root/test_file
|
|
state: touch
|
|
...
|