diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-03-13 22:07:35 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-03-19 18:26:00 +0100 |
commit | c77544b387882450599b5f7e2712abdadaa074e9 (patch) | |
tree | 074b9104eedea9d12637ba5723032c257606e67b /gnu/system/linux-container.scm | |
parent | b45a301618c32c294dbf6b1172ce5a99d460655a (diff) |
linux-container: 'eval/container' honors #:namespaces.
* gnu/system/linux-container.scm (eval/container): Pass #:namespaces to
'call-with-container'.
Diffstat (limited to 'gnu/system/linux-container.scm')
-rw-r--r-- | gnu/system/linux-container.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system/linux-container.scm b/gnu/system/linux-container.scm index e6fd0f1315..415d6b9775 100644 --- a/gnu/system/linux-container.scm +++ b/gnu/system/linux-container.scm @@ -291,4 +291,5 @@ effects." lowered)) (list "-c" (object->string - (lowered-gexp-sexp lowered)))))))))))) + (lowered-gexp-sexp lowered)))))) + #:namespaces namespaces)))))) |