Comment 3 for bug 29550

Revision history for this message
Luis Mondesi (lemsx1) wrote :

/var/lock is now tmpfs.

i temporarily fixed this by adding a line to the cron job:

$> cat /etc/cron.d/logcheck

# /etc/cron.d/logcheck: crontab entries for the logcheck package

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

MAILTO=root

@reboot logcheck if [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck -R; fi

2 * * * * logcheck if [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck; fi

1 * * * * root test ! -d /var/lock/logcheck && mkdir -p /var/lock/logcheck && chown -R logcheck /var/lock/logcheck

# EOF