summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2017-10-23 10:56:35 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-12-04 17:23:55 +0000
commite52027eef7f23dd45d1240c66d3223dd9eb87760 (patch)
tree34600867978625a20f632c23c2f35fdf530b84db /meta/classes
parent9d5296bba535b83c71bf3db068d93df3be03d877 (diff)
downloadpoky-e52027eef7f23dd45d1240c66d3223dd9eb87760.tar.gz
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 <liezhi.yang@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 057885ed6f22781960bce4e082e3aa96e126764c) Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/useradd.bbclass1
1 files changed, 1 insertions, 0 deletions
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 () {
118 # useradd/groupadd tools are unavailable. If there is no dependency, we assume we don't want to 118 # useradd/groupadd tools are unavailable. If there is no dependency, we assume we don't want to
119 # create users in the sysroot 119 # create users in the sysroot
120 if ! command -v useradd; then 120 if ! command -v useradd; then
121 bbwarn "command useradd not found!"
121 exit 0 122 exit 0
122 fi 123 fi
123 124