From: Daniel P. Berrangé <[email protected]> The UUID had only 11 characters in the last component, instead of the required 12.
Signed-off-by: Daniel P. Berrangé <[email protected]> --- docs/formatsecret.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/formatsecret.rst b/docs/formatsecret.rst index d4e0cb9ddb..bbf2fc22ea 100644 --- a/docs/formatsecret.rst +++ b/docs/formatsecret.rst @@ -73,7 +73,7 @@ passphrase to decrypt the volume, :since:`since 2.1.0`. An example follows: # cat luks-secret.xml <secret ephemeral='no' private='yes'> <description>LUKS Sample Secret</description> - <uuid>f52a81b2-424e-490c-823d-6bd4235bc57</uuid> + <uuid>f52a81b2-424e-490c-823d-6bd4235bc507</uuid> <usage type='volume'> <volume>/var/lib/libvirt/images/luks-sample.img</volume> </usage> @@ -91,7 +91,7 @@ The volume type secret can be supplied in domain XML for a luks storage volume :: <encryption format='luks'> - <secret type='passphrase' uuid='f52a81b2-424e-490c-823d-6bd4235bc57'/> + <secret type='passphrase' uuid='f52a81b2-424e-490c-823d-6bd4235bc507'/> </encryption> Usage type "ceph" -- 2.52.0
