[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: linux-container: 'eval/container' honors #:namespaces.
From: |
guix-commits |
Subject: |
01/04: linux-container: 'eval/container' honors #:namespaces. |
Date: |
Sat, 19 Mar 2022 14:21:37 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit c77544b387882450599b5f7e2712abdadaa074e9
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun Mar 13 22:07:35 2022 +0100
linux-container: 'eval/container' honors #:namespaces.
* gnu/system/linux-container.scm (eval/container): Pass #:namespaces to
'call-with-container'.
---
gnu/system/linux-container.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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))))))