22 lines
510 B
YAML
22 lines
510 B
YAML
- include: ../subtasks/setuploop.yml
|
|
- name: erzeuge test1.txt
|
|
ansible.builtin.file:
|
|
path: "test/test1.txt"
|
|
state: touch
|
|
- name: erzeuge test1.json
|
|
ansible.builtin.file:
|
|
path: "test/test1.json"
|
|
state: touch
|
|
- name: erzeuge test2.txt
|
|
ansible.builtin.file:
|
|
path: "test/test2.txt"
|
|
state: touch
|
|
- name: erzeuge test3.txt
|
|
ansible.builtin.file:
|
|
path: "test/test3.txt"
|
|
state: touch
|
|
- name: erzeuge testr4.dat
|
|
ansible.builtin.file:
|
|
path: "test/test4.dat"
|
|
state: touch
|