diff options
Diffstat (limited to 'examples/chroottar.py')
-rwxr-xr-x | examples/chroottar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/chroottar.py b/examples/chroottar.py index 42c09ef..cf0f87e 100755 --- a/examples/chroottar.py +++ b/examples/chroottar.py @@ -83,7 +83,7 @@ def main() -> None: os.chdir("/mnt") linuxnamespaces.bind_mount("/proc", "proc", recursive=True) linuxnamespaces.bind_mount("/sys", "sys", recursive=True) - linuxnamespaces.populate_dev("/", ".", pidns=False, tun=False) + linuxnamespaces.populate_dev("/", ".", pts="host", tun=False) linuxnamespaces.pivot_root(".", ".") linuxnamespaces.umount(".", linuxnamespaces.UmountFlags.DETACH) if args.command: |