From c77ee6f4bc4a0b1e8d3baf6c60ff072a9e3205f6 Mon Sep 17 00:00:00 2001 From: Fierelier Date: Thu, 30 Mar 2023 16:36:50 +0200 Subject: [PATCH] Add /tmp and /run to mounts list --- chroot.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chroot.py b/chroot.py index 5a23c30..1554112 100755 --- a/chroot.py +++ b/chroot.py @@ -8,7 +8,9 @@ mounts = [ "proc", "sys", "dev", - p("dev","pts") + p("dev","pts"), + "tmp", + "run" ] def call(cmd,*args,**kwargs):