[oe-commits] [openembedded-core] 51/54: useradd: Ensure do_populate_sysroot has dependency on useradd variables

git at git.openembedded.org git at git.openembedded.org
Mon Sep 30 15:45:54 UTC 2019


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

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

commit 7f98309c856e0a54dc9dafda91c9db0a33e57425
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Fri May 31 17:45:57 2019 +0100

    useradd: Ensure do_populate_sysroot has dependency on useradd variables
    
    The do_populate_sysroot task doesn't rerun if you change any of the USERADD_PARAM
    or GROUPADD_PARAM variables, only do_package will.
    
    If another task depends on the recipe, this means it won't see any updated changes.
    
    This patch adds in the missing vardeps ensuring the code is deterministic.
    
    [YOCTO #13232]
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    (cherry picked from commit 37d0382a3c67f47f8cfdd977a041069bf912b8c3)
    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 5e600de..e5f3ba2 100644
--- a/meta/classes/useradd.bbclass
+++ b/meta/classes/useradd.bbclass
@@ -184,6 +184,7 @@ def update_useradd_after_parse(d):
         bb.fatal("%s inherits useradd but doesn't set USERADD_PACKAGES" % d.getVar('FILE', False))
 
     for pkg in useradd_packages.split():
+        d.appendVarFlag("do_populate_sysroot", "vardeps", "USERADD_PARAM_%s GROUPADD_PARAM_%s GROUPMEMS_PARAM_%s" % (pkg, pkg, pkg))
         if not d.getVar('USERADD_PARAM_%s' % pkg) and not d.getVar('GROUPADD_PARAM_%s' % pkg) and not d.getVar('GROUPMEMS_PARAM_%s' % pkg):
             bb.fatal("%s inherits useradd but doesn't set USERADD_PARAM, GROUPADD_PARAM or GROUPMEMS_PARAM for package %s" % (d.getVar('FILE', False), pkg))
 

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


More information about the Openembedded-commits mailing list