develop #1

Merged
dtomlinson merged 20 commits from develop into master 2021-03-02 23:48:40 +00:00
Showing only changes of commit a1b208d1b7 - Show all commits

8
test.yml Normal file
View File

@@ -0,0 +1,8 @@
---
- hosts: all
tasks:
- name: Test task to create a file
ansible.builtin.file:
path: /root/test_file
state: touch
...