From e52027eef7f23dd45d1240c66d3223dd9eb87760 Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Mon, 23 Oct 2017 10:56:35 +0800 Subject: useradd.bbclass: print a warn when useradd not found Exit quietly makes it very hard for debugging when user is not added as expected, print a warning helps a lot. (From OE-Core rev: 2428444f4d5deeaad90753bde51455c0b55d7d3e) Signed-off-by: Robert Yang Signed-off-by: Ross Burton Signed-off-by: Richard Purdie (cherry picked from commit 057885ed6f22781960bce4e082e3aa96e126764c) Signed-off-by: Armin Kuster Signed-off-by: Richard Purdie --- meta/classes/useradd.bbclass | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/classes') diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index c9103cbe6a..124becd082 100644 --- a/meta/classes/useradd.bbclass +++ b/meta/classes/useradd.bbclass @@ -118,6 +118,7 @@ useradd_sysroot () { # useradd/groupadd tools are unavailable. If there is no dependency, we assume we don't want to # create users in the sysroot if ! command -v useradd; then + bbwarn "command useradd not found!" exit 0 fi -- cgit v1.2.3-54-g00ecf