blob: 577fe53885a6a656a0b66d52034e28258f5c4f39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
PR .= "mlinux2"
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}"
SRC_URI += "file://logrotate.conf"
do_install_append() {
# setup cron to run logrotate more often
rm -f ${D}${sysconfdir}/cron.daily/logrotate
install -d ${D}${sysconfdir}/cron.d
echo "*/5 * * * * root /usr/sbin/logrotate /etc/logrotate.conf" > ${D}${sysconfdir}/cron.d/logrotate
install -m 0644 ${WORKDIR}/logrotate.conf ${D}${sysconfdir}/
}
|