search for: cd4616c

Displaying 4 results from an estimated 4 matches for "cd4616c".

2015 May 15
5
[PATCH 0/2] customize: Allow --selinux-relabel flag to work on cross-architecture builds.
Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1212807
2015 May 15
0
[PATCH 2/2] customize: Allow --selinux-relabel flag to work on cross-architecture builds (RHBZ#1212807).
--- customize/customize_run.ml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/customize/customize_run.ml b/customize/customize_run.ml index 0f1d72a..cd4616c 100644 --- a/customize/customize_run.ml +++ b/customize/customize_run.ml @@ -338,15 +338,19 @@ exec >>%s 2>&1 if ops.flags.selinux_relabel then ( msg (f_"SELinux relabelling"); - let cmd = sprintf " - if load_policy && fixfiles restore; then -...
2015 May 15
0
[PATCH 3/4] ocaml tools: Use global variables to store trace (-x) and verbose (-v) flags.
...an page virt-customize(1). ) mps; (* Do the customization. *) - Customize_run.run ~verbose ~quiet g root ops; + Customize_run.run ~quiet g root ops; g#umount_all (); ) roots; diff --git a/customize/customize_run.ml b/customize/customize_run.ml index cd4616c..327fb17 100644 --- a/customize/customize_run.ml +++ b/customize/customize_run.ml @@ -26,7 +26,7 @@ open Customize_utils open Customize_cmdline open Password -let run ~verbose ~quiet (g : Guestfs.guestfs) root (ops : ops) = +let run ~quiet (g : Guestfs.guestfs) root (ops : ops) = (* Timestam...
2015 May 15
5
[PATCH 0/4] Only tell people to use -v -x when reporting bugs if they're not using those flags.
.. and a lot of refactoring. https://bugzilla.redhat.com/show_bug.cgi?id=1167623 Rich.