[oe-commits] [openembedded-core] 28/122: useradd.bbclass: print a warn when useradd not found

git at git.openembedded.org git at git.openembedded.org
Mon Dec 4 17:25:06 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch rocko
in repository openembedded-core.

commit 2428444f4d5deeaad90753bde51455c0b55d7d3e
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Mon Oct 23 10:56:35 2017 +0800

    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.
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    (cherry picked from commit 057885ed6f22781960bce4e082e3aa96e126764c)
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/classes/useradd.bbclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass
index c9103cb..124becd 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
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list