search for: e934335

Displaying 2 results from an estimated 2 matches for "e934335".

2016 Sep 15
1
[PATCH] v2v: -o libvirt: always write pool names (RHBZ#1141631)
...ol containing the disks, even when -os specified a pool UUID: libvirt does not handle pool UUIDs for storage, but only names. --- v2v/output_libvirt.ml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/v2v/output_libvirt.ml b/v2v/output_libvirt.ml index 5fa338f..e934335 100644 --- a/v2v/output_libvirt.ml +++ b/v2v/output_libvirt.ml @@ -340,6 +340,7 @@ class output_libvirt oc output_pool = object inherit output val mutable capabilities_doc = None + val mutable pool_name = None method as_options = match oc with @@ -392,6 +393,15 @@ class output_li...
2016 Sep 21
1
[PATCH] v2v: Support <listen type='socket'> and <listen type='none'> (RHBZ#1378022).
...warning (f_"<listen type='%s'> in the input libvirt XML was ignored") t; - LNone + LNoListen ) in let port = match xpath_string "@autoport" with diff --git a/v2v/output_libvirt.ml b/v2v/output_libvirt.ml index e934335..ac91922 100644 --- a/v2v/output_libvirt.ml +++ b/v2v/output_libvirt.ml @@ -281,13 +281,20 @@ let create_libvirt_xml ?pool source target_buses guestcaps (match source.s_display with | Some { s_listen = listen } -> (match listen with + | LNoListen -> () | LAddress a...