From 64b2dab795e171e2ea0345732e96048cfb605466 Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Sat, 26 Oct 2024 20:22:36 +0200 Subject: add a method IDMapping.identity for convenience --- examples/withallsubuids.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/withallsubuids.py') diff --git a/examples/withallsubuids.py b/examples/withallsubuids.py index 3bed3bc..2a0c9d5 100755 --- a/examples/withallsubuids.py +++ b/examples/withallsubuids.py @@ -19,7 +19,7 @@ import linuxnamespaces def main() -> None: # Construct an identity mapping of all available user/group ids uidmap = [ - linuxnamespaces.IDMapping(os.getuid(), os.getuid(), 1), + linuxnamespaces.IDMapping.identity(os.getuid()), *( linuxnamespaces.IDMapping(start, start, count) for start, count @@ -27,7 +27,7 @@ def main() -> None: ), ] gidmap = [ - linuxnamespaces.IDMapping(os.getgid(), os.getgid(), 1), + linuxnamespaces.IDMapping.identity(os.getgid()), *( linuxnamespaces.IDMapping(start, start, count) for start, count -- cgit v1.2.3