diff --git a/test.yml b/test.yml new file mode 100644 index 0000000..b021673 --- /dev/null +++ b/test.yml @@ -0,0 +1,8 @@ +--- +- hosts: all + tasks: + - name: Test task to create a file + ansible.builtin.file: + path: /root/test_file + state: touch +...