diff options
author | Kang Kai <kai.kang@windriver.com> | 2011-08-16 16:32:27 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-19 09:05:52 -0700 |
commit | dec5dfa334ce1b2524f80fab3d3f37e476f54a9f (patch) | |
tree | 53f87e2a12852cc600febb6edfff3dd3cd540520 /meta/recipes-extended | |
parent | 187302dcc1536469a01c6ebd433eda4a4c2c411a (diff) | |
download | openembedded-core-dec5dfa334ce1b2524f80fab3d3f37e476f54a9f.tar.gz openembedded-core-dec5dfa334ce1b2524f80fab3d3f37e476f54a9f.tar.bz2 openembedded-core-dec5dfa334ce1b2524f80fab3d3f37e476f54a9f.zip |
at: make at usable for common user
Fixes [Yocto #1297]
The pkg_postinst was added to fix Yocto #675. But it seems not needed
any more. Remove it then unprivilege user could use at.
Signed-off-by: Kang Kai <kai.kang@windriver.com>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/at/at_3.1.12.bb | 26 |
1 files changed, 5 insertions, 21 deletions
diff --git a/meta/recipes-extended/at/at_3.1.12.bb b/meta/recipes-extended/at/at_3.1.12.bb index c76b50e215..baf15dfc6d 100644 --- a/meta/recipes-extended/at/at_3.1.12.bb +++ b/meta/recipes-extended/at/at_3.1.12.bb @@ -4,11 +4,14 @@ the system load levels drop to a particular level." SECTION = "base" LICENSE="GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=4325afd396febcb659c36b49533135d4" -DEPENDS = "flex libpam initscripts \ +DEPENDS = "flex initscripts \ ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" +RDEPENDS = "${@base_contains('DISTRO_FEATURES', 'pam', '${PAM_DEPS}', '', d)}" +PAM_DEPS = "libpam libpam-runtime pam-plugin-env pam-plugin-limits" + RCONFLICTS_${PN} = "atd" RREPLACES_${PN} = "atd" -PR = "r5" +PR = "r6" SRC_URI = "${DEBIAN_MIRROR}/main/a/at/at_${PV}.orig.tar.gz \ file://configure.patch \ @@ -56,23 +59,4 @@ do_install () { done } -pkg_postinst_${PN} () { - if [ "x$D" != "x" ] ; then - exit 1 - fi - - # below is necessary to allow at usable to normal users - # now at is has its own /var/spool/at instead of under /var/spool/cron - # this way is better to allow setgid on both sides - grep "^daemon" /etc/group || groupadd daemon - chown root:daemon /usr/bin/at - chmod 2755 /usr/bin/at - - chown root:daemon -R /var/spool/at - chmod 770 -R /var/spool/at - - chown root:daemon /etc/at.deny - chmod 640 /etc/at.deny -} - PARALLEL_MAKE = "" |