blob: a46b265e2f4afb7fded6eeede677cd2e98ec4bac (
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
|
DESCRIPTION = "simple logrotate bash script"
RDEPENDS = "busybox"
SECTION = "admin"
PRIORITY = "optional"
LICENSE = "GPL"
SRC_URI = "http://meshcube.org/download/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
}
|