aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/logrotate-script/logrotate-script_cvs.bb
blob: b0e99ed7e6a6f65f1d17573b2a186e8110813fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
DESCRIPTION = "simple logrotate bash script"
RDEPENDS_${PN} = "busybox"
SECTION = "admin"
PRIORITY = "optional"
LICENSE = "GPL"
PR = "r1"

SRC_URI = "http://download.berlin.freifunk.net/meshcube.org/nylon/stable/sources/logrotate_${SRCDATE}.tgz"
S = "${WORKDIR}/${PN}"

do_install() {
	(cd ${S}; tar -c --exclude .svn -f - . ) | tar -C ${D} -xpf -
}

pkg_postinst() {
#!/bin/sh -e
ROOTCRON=/etc/cron/crontabs/root

test -e /etc/cron/crontabs/root \
 && grep '^[^#].*logrotate' $ROOTCRON > /dev/null \
 || echo "*/5 * * * *       /bin/bash ${sbindir}/logrotate -m 0600 -o root -g root -s 800 -l 3 /tmp/messages" >> $ROOTCRON

/etc/init.d/cron restart

exit 0
}