Displaying 3 results from an estimated 3 matches for "ed3c818".
Did you mean:
ed398b8
2016 Jan 26
1
[PATCH] customize: Add support for the APK (Alpine Linux) package manager.
---
customize/customize_run.ml | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/customize/customize_run.ml b/customize/customize_run.ml
index ed3c818..48475af 100644
--- a/customize/customize_run.ml
+++ b/customize/customize_run.ml
@@ -97,6 +97,11 @@ exec >>%s 2>&1
let guest_install_command packages =
let quoted_args = String.concat " " (List.map quote packages) in
match g#inspect_get_package_management root w...
2015 Nov 09
2
[PATCH 1/2] customize: check for file existence with --edit (RHBZ#1275806)
Check that a path provided to --edit exists already; while the is_file
call later will fail for non-existing files, with an explicit check a
better error message can be provided.
---
customize/customize_run.ml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/customize/customize_run.ml b/customize/customize_run.ml
index ff7bd0d..054ee53 100644
--- a/customize/customize_run.ml
+++
2015 Nov 09
0
[PATCH 2/2] customize: allow editing symlinked files
...the target file, instead of overwrite the symlink with a real file), so
it is safe to allow this operation in customize/builder.
---
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 054ee53..ed3c818 100644
--- a/customize/customize_run.ml
+++ b/customize/customize_run.ml
@@ -201,7 +201,7 @@ exec >>%s 2>&1
if not (g#exists path) then
error (f_"%s does not exist in the guest") path;
- if not (g#is_file path) then
+ if not (g#is_file ~followsymli...