summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Gilles <jgilles@multitech.com>2011-01-20 03:13:13 +0000
committerKhem Raj <raj.khem@gmail.com>2011-01-22 09:17:40 -0800
commit03069201ee60f6e3257dd24fa6c5e1627d083df3 (patch)
tree59893036fb863991c38492ae53d773890f265b4c
parentc792d04d2bd63d517133c48bb6dffad2ad3f1fe3 (diff)
downloadopenembedded-03069201ee60f6e3257dd24fa6c5e1627d083df3.tar.gz
logrotate: fix /etc/crontab entry -- run as root
* /etc/crontab entry was missing username field, so it never ran Signed-off-by: Jesse Gilles <jgilles@multitech.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--recipes/logrotate/logrotate_3.7.1.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/logrotate/logrotate_3.7.1.bb b/recipes/logrotate/logrotate_3.7.1.bb
index 850d76aad6..c084dccc0a 100644
--- a/recipes/logrotate/logrotate_3.7.1.bb
+++ b/recipes/logrotate/logrotate_3.7.1.bb
@@ -5,7 +5,7 @@ DEPENDS = "popt"
RDEPENDS_${PN} = "cron"
SECTION = "admin"
LICENSE = "GPL"
-PR = "r3"
+PR = "r4"
SRC_URI = "http://ftp.debian.org/debian/pool/main/l/logrotate/logrotate_${PV}.orig.tar.gz \
file://logrotate-3.7.1.patch \
@@ -28,7 +28,7 @@ do_install () {
pkg_postinst () {
# Add the logrotate line to /etc/crontab
- grep -q "${base_sbindir}/logrotate" ${sysconfdir}/crontab || echo "*/5 * * * * ${base_sbindir}/logrotate ${sysconfdir}/logrotate.conf" >> ${sysconfdir}/crontab
+ grep -q "${base_sbindir}/logrotate" ${sysconfdir}/crontab || echo "*/5 * * * * root ${base_sbindir}/logrotate ${sysconfdir}/logrotate.conf" >> ${sysconfdir}/crontab
}
pkg_postrm() {