Teil 11 Loops

This commit is contained in:
2025-07-16 13:59:07 +02:00
parent 9621d1d1d4
commit a9f3b8347f
9 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
---
- name: create test dir
ansible.builtin.file:
path: test
state: directory
- name: delete test files
ansible.builtin.file:
path: "test/*"
state: absent