From: Changqing Li <changqing...@windriver.com> Bitbake preserve network for non-local uid, refer [1], so check_userns is not needed for non-local uid
[1] https://git.openembedded.org/bitbake/commit/?id=4eafae7904bae6e5c6bc50356e8a9077f2e207fa Signed-off-by: Changqing Li <changqing...@windriver.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-bri...@bootlin.com> Signed-off-by: Richard Purdie <richard.pur...@linuxfoundation.org> --- meta/classes-global/sanity.bbclass | 2 ++ 1 file changed, 2 insertions(+) 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: -- 2.25.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#209325): https://lists.openembedded.org/g/openembedded-core/message/209325 Mute This Topic: https://lists.openembedded.org/mt/110403281/21656 Group Owner: openembedded-core+ow...@lists.openembedded.org Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-