diff options
author | Helmut Grohne <helmut@subdivi.de> | 2024-01-22 17:55:37 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2024-01-22 17:55:37 +0100 |
commit | 51aac10f6ad30a787b34e61ae43d1ec4336691e6 (patch) | |
tree | a075393cb82ff829b8bb41bad88bde47233393f0 /examples | |
parent | ec0be44f5e34ed76f7f6f2eeb530682f2b096212 (diff) | |
download | python-linuxnamespaces-51aac10f6ad30a787b34e61ae43d1ec4336691e6.tar.gz |
provide default for IDAllocation.allocation map arg target
Most frequently, the root user is allocated.
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/userchroot.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/userchroot.py b/examples/userchroot.py index 315a437..73d52b3 100755 --- a/examples/userchroot.py +++ b/examples/userchroot.py @@ -34,8 +34,8 @@ def main() -> None: subuids = linuxnamespaces.IDAllocation.loadsubid("uid") subgids = linuxnamespaces.IDAllocation.loadsubid("gid") - uidmap = subuids.allocatemap(65536, 0) - gidmap = subgids.allocatemap(65536, 0) + uidmap = subuids.allocatemap(65536) + gidmap = subgids.allocatemap(65536) linuxnamespaces.unshare_user_idmap( [uidmap], |