From c9e22969a01eecc6ff1865e7486b1ee198e4acbc Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Sat, 12 Jul 2025 15:24:05 +0200 Subject: examples/unschroot_fs.py: Some base tar lack /dev --- examples/unschroot_fs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/unschroot_fs.py b/examples/unschroot_fs.py index a07f32d..1487955 100755 --- a/examples/unschroot_fs.py +++ b/examples/unschroot_fs.py @@ -145,6 +145,7 @@ class TarSourceChroot(SourceChroot): childsock.close() os.setgid(0) os.setuid(0) + os.mkdir("./dev", mode=0o755) for tmem in tarf: if not tmem.name.startswith(("dev/", "./dev/")): tarf.extract(tmem, numeric_owner=True) -- cgit v1.2.3