33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From b96a2119b20f204661fa2165aea3c6c2b84e23de Mon Sep 17 00:00:00 2001
|
|
From: Pino Toscano <ptoscano@redhat.com>
|
|
Date: Thu, 5 Apr 2018 10:28:17 +0200
|
|
Subject: [PATCH] v2v: OVF: fix ovf:id for VirtualSystem in OVirt flavour
|
|
|
|
When writing the OVF in OVirt flavour, write the actual UUID of the
|
|
VM as ovf:id attribute for <VirtualSystem>, instead of a dummy value.
|
|
|
|
Suggested by Arik Hadas in
|
|
https://www.redhat.com/archives/libguestfs/2018-April/msg00005.html
|
|
|
|
(cherry picked from commit 9dce43931a19510be1b6d21ce67d14a4136ce241)
|
|
---
|
|
v2v/create_ovf.ml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/v2v/create_ovf.ml b/v2v/create_ovf.ml
|
|
index 730ab64b4..b1ab8df3f 100644
|
|
--- a/v2v/create_ovf.ml
|
|
+++ b/v2v/create_ovf.ml
|
|
@@ -688,7 +688,7 @@ let rec create_ovf source targets guestcaps inspect
|
|
|
|
(match ovf_flavour with
|
|
| OVirt ->
|
|
- e "VirtualSystem" ["ovf:id", "out"] !content_subnodes
|
|
+ e "VirtualSystem" ["ovf:id", vm_uuid] !content_subnodes
|
|
| RHVExportStorageDomain ->
|
|
e "Content" ["ovf:id", "out"; "xsi:type", "ovf:VirtualSystem_Type"]
|
|
!content_subnodes
|
|
--
|
|
2.21.0
|
|
|