14 lines
231 B
YAML
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
|
|
|