summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-03-13 22:07:35 +0100
committerLudovic Courtès <ludo@gnu.org>2022-03-19 18:26:00 +0100
commitc77544b387882450599b5f7e2712abdadaa074e9 (patch)
tree074b9104eedea9d12637ba5723032c257606e67b
parentb45a301618c32c294dbf6b1172ce5a99d460655a (diff)
downloadguix-patches-c77544b387882450599b5f7e2712abdadaa074e9.tar
guix-patches-c77544b387882450599b5f7e2712abdadaa074e9.tar.gz
linux-container: 'eval/container' honors #:namespaces.
* gnu/system/linux-container.scm (eval/container): Pass #:namespaces to 'call-with-container'.
-rw-r--r--gnu/system/linux-container.scm3
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))))))