1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tests/integration/targets/filesystem/tasks/create_device.yml

40 lines
1,017 B
YAML
Raw Normal View History

---
2020-03-09 10:11:07 +01:00
- name: 'Create a "disk" file'
community.general.filesize:
path: '{{ image_file }}'
size: '{{ fssize }}M'
force: true
2020-03-09 10:11:07 +01:00
- vars:
dev: '{{ image_file }}'
block:
- when: fstype == 'lvm'
block:
- name: 'Create a loop device for LVM'
ansible.builtin.command:
cmd: 'losetup --show -f {{ dev }}'
2020-03-09 10:11:07 +01:00
register: loop_device_cmd
- name: 'Switch to loop device target for further tasks'
ansible.builtin.set_fact:
2020-03-09 10:11:07 +01:00
dev: "{{ loop_device_cmd.stdout }}"
- include_tasks: '{{ action }}.yml'
always:
- name: 'Detach loop device used for LVM'
ansible.builtin.command:
cmd: 'losetup -d {{ dev }}'
2020-03-09 10:11:07 +01:00
removes: '{{ dev }}'
when: fstype == 'lvm'
- name: 'Clean correct device for LVM'
ansible.builtin.set_fact:
2020-03-09 10:11:07 +01:00
dev: '{{ image_file }}'
when: fstype == 'lvm'
- name: 'Remove disk image file'
ansible.builtin.file:
2020-03-09 10:11:07 +01:00
name: '{{ image_file }}'
state: absent