From a1b208d1b7b74bc136a293a00b464a7c3da927ad Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Mon, 1 Mar 2021 00:16:45 +0000 Subject: [PATCH] adding test playbook --- test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test.yml 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 +...