search for: prltools_path

Displaying 1 result from an estimated 1 matches for "prltools_path".

2016 Jun 11
0
Re: [PATCH 2/2] v2v: linux: uninstall Parallels tools
.../v2v/convert_linux.ml > @@ -694,6 +694,20 @@ let rec convert ~keep_serial_console (g : G.guestfs) inspect source rcaps = > ignore (g#command [| "/sbin/chkconfig"; "kudzu"; "off" |]) > ) > > + and unconfigure_prltools () = > + let prltools_path = "/usr/lib/parallels-tools/install" in > + if g#is_file ~followsymlinks:true prltools_path then ( > + try > + ignore (g#command [| prltools_path; "-r" |]); > + > + (* Reload Augeas to detect changes made by prltools uninst. *) > +...