Initial commit

This commit is contained in:
Alex 2020-05-16 22:05:43 +02:00
commit 1aa69377be
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 8 additions and 0 deletions

8
tasks/main.yml Normal file
View File

@ -0,0 +1,8 @@
- name: Create files or directories
loop: '{{ file }}'
file:
path: '{{ item.path }}'
owner: '{{ item.owner }}'
group: '{{ item.group }}'
mode: '{{ item.mode }}'
state: '{{ item.state }}'