| Message ID | 20241017111520.3456904-1-changqing.li@windriver.com |
|---|---|
| State | Accepted, archived |
| Commit | 808d0cece22bcbee15236717e158da247cbedaf1 |
| Headers | show |
| Series | sanity.bbclass: skip check_userns for non-local uid | expand |
diff --git a/meta/classes-global/sanity.bbclass b/meta/classes-global/sanity.bbclass index 72dab0fea2..a0b2508e11 100644 --- a/meta/classes-global/sanity.bbclass +++ b/meta/classes-global/sanity.bbclass @@ -484,6 +484,8 @@ def check_userns(): # succeeds (at which point the uid is nobody) but writing to the uid_map # fails (so the uid isn't reset back to the user's uid). We can detect this. parentuid = os.getuid() + if not bb.utils.is_local_uid(parentuid): + return None pid = os.fork() if not pid: try: