summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2011-10-20 21:20:43 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-30 16:38:04 +0000
commit2edde1021fd06ea693b395074e358a16be41b244 (patch)
treeeea46fc53678907ecbd292d7e7d76c9da713faa9 /meta/recipes-core
parentafc60481c76f35647e566f008f2291d0bf94f530 (diff)
downloadpoky-2edde1021fd06ea693b395074e358a16be41b244.tar.gz
base-passwd: move initial criation of group and passwd to preinst
To allow use and manipulation of users and groups at rootfs building time, the '/etc/passwd' and '/etc/group' needs to be available as soon as possible. (From OE-Core rev: 0395eba96d6f37f323f5b76564809a44d7ceb103) (From OE-Core rev: 73452afe344b66c6dd8e4e120e61ac9fce8652e3) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r--meta/recipes-core/base-passwd/base-passwd_3.5.22.bb19
1 files changed, 18 insertions, 1 deletions
diff --git a/meta/recipes-core/base-passwd/base-passwd_3.5.22.bb b/meta/recipes-core/base-passwd/base-passwd_3.5.22.bb
index 137512dc3c..aa90a6d925 100644
--- a/meta/recipes-core/base-passwd/base-passwd_3.5.22.bb
+++ b/meta/recipes-core/base-passwd/base-passwd_3.5.22.bb
@@ -1,7 +1,7 @@
1SUMMARY = "Base system master password/group files." 1SUMMARY = "Base system master password/group files."
2DESCRIPTION = "The master copies of the user database files (/etc/passwd and /etc/group). The update-passwd tool is also provided to keep the system databases synchronized with these master files." 2DESCRIPTION = "The master copies of the user database files (/etc/passwd and /etc/group). The update-passwd tool is also provided to keep the system databases synchronized with these master files."
3SECTION = "base" 3SECTION = "base"
4PR = "r3" 4PR = "r4"
5LICENSE = "GPLv2+" 5LICENSE = "GPLv2+"
6LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a" 6LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a"
7 7
@@ -37,6 +37,23 @@ do_install () {
37 install -p -m 644 debian/copyright ${D}${docdir}/${BPN}/ 37 install -p -m 644 debian/copyright ${D}${docdir}/${BPN}/
38} 38}
39 39
40pkg_preinst_${PN} () {
41 set -e
42
43 # Used for rootfs generation. On in-target install this will be run
44 # before the unpack so the files won't be available
45
46 if [ ! -e $D${sysconfdir}/passwd ] && [ -e $D${datadir}/base-passwd/passwd.master ]; then
47 cp $D${datadir}/base-passwd/passwd.master $D${sysconfdir}/passwd
48 fi
49
50 if [ ! -e $D${sysconfdir}/group ] && [ -e $D${datadir}/base-passwd/group.master ]; then
51 cp $D${datadir}/base-passwd/group.master $D${sysconfdir}/group
52 fi
53
54 exit 0
55}
56
40pkg_postinst_${PN} () { 57pkg_postinst_${PN} () {
41 set -e 58 set -e
42 59