diff options
author | Ross Burton <ross.burton@intel.com> | 2013-12-18 16:20:02 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-18 17:08:05 +0000 |
commit | 2a58f7693527445e07b8ab5d6759efffb4998cfc (patch) | |
tree | 502d0b3a5b8dbe8b06bfb153f48ac1db3a5364f0 /meta | |
parent | 480bf037ae437689e16cbdcef0208c4298268fc4 (diff) | |
download | poky-2a58f7693527445e07b8ab5d6759efffb4998cfc.tar.gz |
useradd.bbclass: add dependency on base-files
Packages that use useradd.bbclass should have a dependency on base-files so that
the /etc/skel directory is populated. Without this dependency base-files may or
may not be installed when the postinst runs, and the skel content may or may not
be copied.
(From OE-Core rev: 556368ba8a1f933a86b69be024bd0711d4bfe0a3)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/useradd.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index a850e9db6a..a2ad648938 100644 --- a/meta/classes/useradd.bbclass +++ b/meta/classes/useradd.bbclass | |||
@@ -182,6 +182,8 @@ fakeroot python populate_packages_prepend () { | |||
182 | rdepends = d.getVar("RDEPENDS_%s" % pkg, True) or "" | 182 | rdepends = d.getVar("RDEPENDS_%s" % pkg, True) or "" |
183 | rdepends += ' ' + d.getVar('MLPREFIX') + 'base-passwd' | 183 | rdepends += ' ' + d.getVar('MLPREFIX') + 'base-passwd' |
184 | rdepends += ' ' + d.getVar('MLPREFIX') + 'shadow' | 184 | rdepends += ' ' + d.getVar('MLPREFIX') + 'shadow' |
185 | # base-files is where the default /etc/skel is packaged | ||
186 | rdepends += ' ' + d.getVar('MLPREFIX') + 'base-files' | ||
185 | d.setVar("RDEPENDS_%s" % pkg, rdepends) | 187 | d.setVar("RDEPENDS_%s" % pkg, rdepends) |
186 | 188 | ||
187 | # Add the user/group preinstall scripts and RDEPENDS requirements | 189 | # Add the user/group preinstall scripts and RDEPENDS requirements |