search for: unconfigure_citrix

Displaying 3 results from an estimated 3 matches for "unconfigure_citrix".

Did you mean: _unconfigure_citrix
2016 Jun 11
0
Re: [PATCH 2/2] v2v: linux: uninstall Parallels tools
...gt; + > and configure_kernel () = > (* Previously this function would try to install kernels, but we > * don't do that any longer. > @@ -1414,6 +1428,7 @@ let rec convert ~keep_serial_console (g : G.guestfs) inspect source rcaps = > unconfigure_vmware (); > unconfigure_citrix (); > unconfigure_kudzu (); > + unconfigure_prltools (); > > let kernel, virtio = configure_kernel () in I have pushed this patch. Thanks for your contribution. I will look at the other more complex patch series later -- tomorrow hopefully. My apologies for the mailing list...
2015 Oct 06
0
[PATCH 5/5] mllib: Replace various ad hoc string_* functions with String.*
...ides in + List.filter (fun s -> String.find s library = -1) provides in (* Trim whitespace. *) let rex = Str.regexp "^[ \t]*\\([^ \t]+\\)[ \t]*$" in @@ -629,7 +629,7 @@ let rec convert ~keep_serial_console (g : G.guestfs) inspect source = and unconfigure_citrix () = let pkgs = List.filter ( - fun { G.app2_name = name } -> string_prefix name "xe-guest-utilities" + fun { G.app2_name = name } -> String.is_prefix name "xe-guest-utilities" ) inspect.i_apps in let pkgs = List.map (fun { G.app2_name...
2015 Oct 06
10
[PATCH 0/5] mllib: Hide bad String functions and miscellaneous refactoring.
Hide/prevent the use of bad string functions like String.lowercase. These are replaced by safe functions that won't break UTF-8 strings. Other miscellaneous refactoring. Rich.