diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/base-passwd/base-passwd_3.5.22.bb | 10 |
1 files changed, 5 insertions, 5 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 3315c68196..7b1fdf17c2 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 @@ | |||
1 | SUMMARY = "Base system master password/group files." | 1 | SUMMARY = "Base system master password/group files." |
2 | DESCRIPTION = "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." | 2 | DESCRIPTION = "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." |
3 | SECTION = "base" | 3 | SECTION = "base" |
4 | PR = "r2" | 4 | PR = "r3" |
5 | LICENSE = "GPLv2+" | 5 | LICENSE = "GPLv2+" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a" |
7 | 7 | ||
@@ -21,16 +21,16 @@ SSTATEPOSTINSTFUNCS += "base_passwd_sstate_postinst" | |||
21 | 21 | ||
22 | do_install () { | 22 | do_install () { |
23 | install -d -m 755 ${D}${sbindir} | 23 | install -d -m 755 ${D}${sbindir} |
24 | install -p -m 755 update-passwd ${D}${sbindir}/ | 24 | install -o root -g root -p -m 755 update-passwd ${D}${sbindir}/ |
25 | install -d -m 755 ${D}${mandir}/man8 ${D}${mandir}/pl/man8 | 25 | install -d -m 755 ${D}${mandir}/man8 ${D}${mandir}/pl/man8 |
26 | install -p -m 644 man/update-passwd.8 ${D}${mandir}/man8/ | 26 | install -p -m 644 man/update-passwd.8 ${D}${mandir}/man8/ |
27 | install -p -m 644 man/update-passwd.pl.8 \ | 27 | install -p -m 644 man/update-passwd.pl.8 \ |
28 | ${D}${mandir}/pl/man8/update-passwd.8 | 28 | ${D}${mandir}/pl/man8/update-passwd.8 |
29 | gzip -9 ${D}${mandir}/man8/* ${D}${mandir}/pl/man8/* | 29 | gzip -9 ${D}${mandir}/man8/* ${D}${mandir}/pl/man8/* |
30 | install -d -m 755 ${D}${datadir}/base-passwd | 30 | install -d -m 755 ${D}${datadir}/base-passwd |
31 | install -p -m 644 passwd.master ${D}${datadir}/base-passwd/ | 31 | install -o root -g root -p -m 644 passwd.master ${D}${datadir}/base-passwd/ |
32 | install -p -m 644 group.master ${D}${datadir}/base-passwd/ | 32 | install -o root -g root -p -m 644 group.master ${D}${datadir}/base-passwd/ |
33 | install -p -m 644 ${S}/../login.defs ${D}${datadir}/base-passwd/login.defs | 33 | install -o root -g root -p -m 644 ${S}/../login.defs ${D}${datadir}/base-passwd/login.defs |
34 | 34 | ||
35 | install -d -m 755 ${D}${docdir}/${PN} | 35 | install -d -m 755 ${D}${docdir}/${PN} |
36 | install -p -m 644 debian/changelog ${D}${docdir}/${PN}/ | 36 | install -p -m 644 debian/changelog ${D}${docdir}/${PN}/ |