mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
19d7f60133
virCommandToString has the possibility to return an already wrapped string with better format than what we get from the test wrapper script. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
16 lines
487 B
Plaintext
16 lines
487 B
Plaintext
qemu-img \
|
|
create \
|
|
-f luks \
|
|
--object secret,id=OtherDemo.img_encrypt0,file=/path/to/secretFile \
|
|
-o key-secret=OtherDemo.img_encrypt0 \
|
|
/var/lib/libvirt/images/OtherDemo.img \
|
|
5242880K
|
|
qemu-img \
|
|
convert \
|
|
--image-opts \
|
|
-n \
|
|
--target-image-opts \
|
|
--object secret,id=OtherDemo.img_encrypt0,file=/path/to/secretFile \
|
|
driver=qcow2,file.filename=/var/lib/libvirt/images/sparse-qcow2.img \
|
|
driver=luks,file.filename=/var/lib/libvirt/images/OtherDemo.img,key-secret=OtherDemo.img_encrypt0
|