|
|
62f9b7 |
From 358122c089d1e4df014a6821365341d3220ab6e6 Mon Sep 17 00:00:00 2001
|
|
|
62f9b7 |
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
|
62f9b7 |
Date: Tue, 19 Jan 2021 11:26:23 +0000
|
|
|
62f9b7 |
Subject: [PATCH] v2v: Fix spelling mistake in uninstall function name.
|
|
|
62f9b7 |
|
|
|
62f9b7 |
Fixes: commit 53847717fa1d0ffc2a174275badf486eb1ed6fae
|
|
|
62f9b7 |
(cherry picked from commit 3515c9f617271bec89962ba8a2b8c690e6df4c99)
|
|
|
62f9b7 |
---
|
|
|
62f9b7 |
v2v/convert_windows.ml | 6 +++---
|
|
|
62f9b7 |
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
62f9b7 |
|
|
|
62f9b7 |
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
|
|
|
62f9b7 |
index ba26949f..f2f7b95c 100644
|
|
|
62f9b7 |
--- a/v2v/convert_windows.ml
|
|
|
62f9b7 |
+++ b/v2v/convert_windows.ml
|
|
|
62f9b7 |
@@ -135,7 +135,7 @@ let convert (g : G.guestfs) inspect _ output rcaps static_ips =
|
|
|
62f9b7 |
(* Locate and retrieve all the uninstallation commands for installed
|
|
|
62f9b7 |
* applications.
|
|
|
62f9b7 |
*)
|
|
|
62f9b7 |
- let unistallation_commands pretty_name matchfn extra_uninstall_string =
|
|
|
62f9b7 |
+ let uninstallation_commands pretty_name matchfn extra_uninstall_string =
|
|
|
62f9b7 |
let uninsts = ref [] in
|
|
|
62f9b7 |
|
|
|
62f9b7 |
Registry.with_hive_readonly g inspect.i_windows_software_hive
|
|
|
62f9b7 |
@@ -198,14 +198,14 @@ let convert (g : G.guestfs) inspect _ output rcaps static_ips =
|
|
|
62f9b7 |
*)
|
|
|
62f9b7 |
let extra_uninstall_string =
|
|
|
62f9b7 |
Some "PREVENT_REBOOT=Yes LAUNCHED_BY_SETUP_EXE=Yes" in
|
|
|
62f9b7 |
- unistallation_commands "Parallels Tools" matchfn extra_uninstall_string in
|
|
|
62f9b7 |
+ uninstallation_commands "Parallels Tools" matchfn extra_uninstall_string in
|
|
|
62f9b7 |
|
|
|
62f9b7 |
(* Locate and retrieve all uninstallation commands for VMware Tools. *)
|
|
|
62f9b7 |
let vmwaretools_uninst =
|
|
|
62f9b7 |
let matchfn s =
|
|
|
62f9b7 |
String.find s "VMware Tools" != -1
|
|
|
62f9b7 |
in
|
|
|
62f9b7 |
- unistallation_commands "VMware Tools" matchfn None in
|
|
|
62f9b7 |
+ uninstallation_commands "VMware Tools" matchfn None in
|
|
|
62f9b7 |
|
|
|
62f9b7 |
(*----------------------------------------------------------------------*)
|
|
|
62f9b7 |
(* Perform the conversion of the Windows guest. *)
|
|
|
62f9b7 |
--
|
|
|
62f9b7 |
2.27.0
|
|
|
62f9b7 |
|