Use default compat for qcow2 images.

This will cause images to be created with more moderm features which
will make our images faster and provide better sparse handling.
This commit is contained in:
Brian Murray 2022-07-22 09:57:42 -07:00
parent 03597e8cb4
commit 187f777718

View File

@ -370,7 +370,7 @@ create_derivative() {
convert_to_qcow2() {
src="$1"
destination="$2"
qemu-img convert -c -O qcow2 -o compat=0.10 "$src" "$destination"
qemu-img convert -c -O qcow2 "$src" "$destination"
qemu-img info "$destination"
}