Files
ansible-tutorial/roles/with_items/tasks/main.yml
2025-07-16 13:59:07 +02:00

14 lines
231 B
YAML

- include: ../subtasks/setuploop.yml
- name: erzeuge Testdateien
ansible.builtin.file:
path: "test/{{ item }}"
state: touch
with_items:
- test1.txt
- test1.json
- test2.txt
- test3.txt
- test4.dat