blob: 9fb8968b8f4a29b3ba5533c0cd5ef7ab993bdcd1 [file] [log] [blame]
SF initial configuratora26c41e2022-10-06 13:33:13 +03001---
2- name: Create raw file
3 command: "qemu-img convert -O raw {{ image_file }} {{ image_output }}.raw"
4 when: raw_type | default(False) | bool
5
6- name: Create qcow file
7 command: "mv {{ image_file }} {{ image_output }}.qcow2"
8 when: qcow2_type | default(False) | bool