search for: 6b4197d

Displaying 2 results from an estimated 2 matches for "6b4197d".

Did you mean: 641978
2016 Oct 04
1
[PATCH] v2v: linux: try to fix removal of VMware tools
...s issue, just mark the package as "to be removed" in that case Related to: RHBZ#1155150 --- v2v/convert_linux.ml | 56 +++++++++++++++++++++++++++++++--------------------- 1 file changed, 34 insertions(+), 22 deletions(-) diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml index 6b4197d..8771869 100644 --- a/v2v/convert_linux.ml +++ b/v2v/convert_linux.ml @@ -252,29 +252,41 @@ let rec convert ~keep_serial_console (g : G.guestfs) inspect source rcaps = (* The packages provide themselves, filter this out. *) let provides = - List.filter (fun...
2016 Sep 20
1
[PATCH v5] v2v: linux: correctly reconfigure the initrd on Debian
...the image we can list them in file /etc/initramfs-tools/modules. Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> --- v2v/convert_linux.ml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml index 08f4b2a..6b4197d 100644 --- a/v2v/convert_linux.ml +++ b/v2v/convert_linux.ml @@ -478,6 +478,15 @@ let rec convert ~keep_serial_console (g : G.guestfs) inspect source rcaps = ignore (g#command (Array.of_list args)) in + let run_update_initramfs_command () = + let args = + &quo...