mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-09 23:10:08 +00:00
f432114d9c
Change the default to modern qcow2 as it's supported by all qemu versions supported by libvirt and in fact 'qemu-img' already defaults to the new format for a long time. Some Unittests require changes to pass, now that version 1.1 is default. Unittests like `qcow2-1.1.argv` may not be relevant anymore, but this patch doesn't affect them. Closes: https://gitlab.com/libvirt/libvirt/-/issues/602 Signed-off-by: Abhiram Tilak <atp.exp@gmail.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
15 lines
407 B
Plaintext
15 lines
407 B
Plaintext
qemu-img \
|
|
create \
|
|
-f qcow2 \
|
|
-o compat=1.1 \
|
|
/var/lib/libvirt/images/sparse-qcow2.img \
|
|
1073741824K
|
|
qemu-img \
|
|
convert \
|
|
--image-opts \
|
|
-n \
|
|
--target-image-opts \
|
|
--object secret,id=OtherDemo.img_encrypt0,file=/path/to/inputSecretFile \
|
|
driver=luks,file.filename=/var/lib/libvirt/images/OtherDemo.img,key-secret=OtherDemo.img_encrypt0 \
|
|
driver=qcow2,file.filename=/var/lib/libvirt/images/sparse-qcow2.img
|