summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2025-10-20 12:23:47 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2025-10-29 11:34:28 +0900
commitcbc35fd9aa08a6da9df1ce8463779ad7decaf12a (patch)
treebca2651396fb829d6acafc9c9de85fb071888c49
parent1eccea7ffb7eac43670d5fd76e8afa8ecfe6b0b9 (diff)
system: Reinstate lock mounts in `container-script'.
This issue should now be resolved, with a test guarding it from re-appearing. * gnu/system/linux-container.scm (container-script) [#:lock-mounts]: Delete argument. Change-Id: I93e94a0ee349c53967275b82e1a9a5bcc8e8f65c
-rw-r--r--gnu/system/linux-container.scm4
1 files changed, 0 insertions, 4 deletions
diff --git a/gnu/system/linux-container.scm b/gnu/system/linux-container.scm
index d16d1e78b56..9bcdf24a7e0 100644
--- a/gnu/system/linux-container.scm
+++ b/gnu/system/linux-container.scm
@@ -317,10 +317,6 @@ Run the container with the given options."))
317 #:namespaces (if #$shared-network? 317 #:namespaces (if #$shared-network?
318 (delq 'net %namespaces) 318 (delq 'net %namespaces)
319 %namespaces) 319 %namespaces)
320
321 ;; XXX: Work around <https://issues.guix.gnu.org/78356>.
322 #:lock-mounts? #f
323
324 #:writable-root? #t 320 #:writable-root? #t
325 #:process-spawned-hook explain))))) 321 #:process-spawned-hook explain)))))
326 322