search for: 3e759a2

Displaying 2 results from an estimated 2 matches for "3e759a2".

Did you mean: 375942
2016 Jul 21
1
[PATCH] customize: use --noconfirm when installing Arch Linux packages
Otherwise the installation will fail right away, since pacman by default asks for confirmation of the operation. --- customize/customize_run.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/customize/customize_run.ml b/customize/customize_run.ml index 6f0d615..3e759a2 100644 --- a/customize/customize_run.ml +++ b/customize/customize_run.ml @@ -117,7 +117,7 @@ exec >>%s 2>&1 " quoted_args | "dnf" -> sprintf "dnf -y install %s" quoted_args | "pisi" -> sprintf "pisi it %s" quoted_...
2016 Sep 30
2
[PATCH] customize: Add --append-line.
...ranklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + *) + +val append_line : Guestfs.guestfs -> string -> string -> string -> unit +(** append_line [g root file line] appends a single line to a text file. *) diff --git a/customize/customize_run.ml b/customize/customize_run.ml index 3e759a2..9ec7b5a 100644 --- a/customize/customize_run.ml +++ b/customize/customize_run.ml @@ -25,6 +25,7 @@ open Common_utils open Customize_utils open Customize_cmdline open Password +open Append_line let run (g : Guestfs.guestfs) root (ops : ops) = (* Is the host_cpu compatible with the guest ar...