我正在使用PHP 5.3.3-7+squeeze14运行Debian。有几个 cronjobs 可以 gc 清理我的 php 会话:
(cron.d)09,39 * * * * root [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete
(crontab)47 * * * * root cd / && run-parts --report /etc/cron.hourly
(crontab)45 0 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
(crontab)34 1 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
(crontab)44 3 4 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
这些 Cron 抛出....
... cron.log行
Jan 4 11:47:01 flowl /USR/SBIN/CRON[3976]: (root) CMD (cd / && run-parts --report /etc/cron.hourly)
Jan 4 12:09:01 flowl /USR/SBIN/CRON[3983]: (root) CMD ( [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)
... auth.log行
Jan 4 12:09:01 flowl CRON[3982]: pam_unix(cron:session): session opened for user root by (uid=0)`
Jan 4 12:09:01 flowl CRON[3982]: pam_unix(cron:session): session closed for user root`
如何从(至少)auth.log 中删除(所有这些烦人的)cron 日志?我没有调查 cron.log,因为我经常可以用这些来生活。
提前致谢!担