Displaying 2 results from an estimated 2 matches for "409b46edc6".
2023 Jun 29
1
[PATCH guestfs-tools] customize: Implement --chown option
...a/common b/common
index 420892e660..bbb54714ce 160000
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit 420892e660726c7184c000b9b86b11f491a5a126
+Subproject commit bbb54714ce24c76e5761d96a0227a753896dc4c4
diff --git a/customize/customize_run.ml b/customize/customize_run.ml
index f03774e003..409b46edc6 100644
--- a/customize/customize_run.ml
+++ b/customize/customize_run.ml
@@ -153,6 +153,17 @@ let run (g : G.guestfs) root (ops : ops) =
let mode = if String.is_prefix mode "0" then "0o" ^ mode else mode in
g#chmod (int_of_string mode) path
+ | `Chown (uid_gid...
2023 Jun 29
1
[PATCH guestfs-tools] customize: Implement --chown option
.....bbb54714ce 160000
> --- a/common
> +++ b/common
> @@ -1 +1 @@
> -Subproject commit 420892e660726c7184c000b9b86b11f491a5a126
> +Subproject commit bbb54714ce24c76e5761d96a0227a753896dc4c4
> diff --git a/customize/customize_run.ml b/customize/customize_run.ml
> index f03774e003..409b46edc6 100644
> --- a/customize/customize_run.ml
> +++ b/customize/customize_run.ml
> @@ -153,6 +153,17 @@ let run (g : G.guestfs) root (ops : ops) =
> let mode = if String.is_prefix mode "0" then "0o" ^ mode else mode in
> g#chmod (int_of_string mode) path...