From 437bb9ece55f37d4b5a62cafc98c0c3b848a53ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sat, 10 May 2025 18:58:35 +0200 Subject: [PATCH] =?UTF-8?q?linux-container:=20Do=20not=20attempt=20to=20lo?= =?UTF-8?q?ck=20mounts=20for=20=E2=80=98guix=20system=20container=E2=80=99?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes . * gnu/system/linux-container.scm (container-script): Pass #:lock-mounts? #f to ‘call-with-container’. Reported-by: Rutherther Change-Id: Ie670868147f32baf2c2a94c9c7b1636bc84d0a0a --- gnu/system/linux-container.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/system/linux-container.scm b/gnu/system/linux-container.scm index e7cb90d091..8e208d3a70 100644 --- a/gnu/system/linux-container.scm +++ b/gnu/system/linux-container.scm @@ -312,6 +312,10 @@ Run the container with the given options.")) #:namespaces (if #$shared-network? (delq 'net %namespaces) %namespaces) + + ;; XXX: Work around . + #:lock-mounts? #f + #:writable-root? #t #:process-spawned-hook explain)))))