adding test playbook

This commit is contained in:
2021-03-01 00:16:45 +00:00
parent 1a805efaad
commit a1b208d1b7

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
...