J'ai installé l'addon 1.4.11 le 24-08-2006 sur 2 wrap différents. Depuis ces 2 fichiers font des poids hallucinant. (10Mb et 50Mb) (et sur les 2 wrap)
- Code: Tout sélectionner
/ram/var/log/messages
/ram/var/log/wtmp
en consultant le fichier /etc/logrotate.conf je vois :
- Code: Tout sélectionner
# rotate log files weekly
weekly
# keep 52 weeks worth of backlogs
rotate 52
# create new (empty) log files after rotating old ones
create
# uncomment this if you want your log files compressed
compress
# wtmp
/var/log/wtmp {
weekly
create 0664 root utmp
rotate 1
}
/var/log/httpd/access_log /var/log/httpd/error_log /var/log/httpd/ssl_request_log /var/log/httpd/ssl_engine_log {
missingok
sharedscripts
postrotate
/bin/kill -HUP `cat /var/run/httpd.pid 2>/dev/null` 2> /dev/null || true
endscript
}
/var/log/snort/alert {
weekly
copytruncate
compress
ifempty
missingok
postrotate
/usr/bin/find /var/log/snort -path '/var/log/snort/[0-9]*' -prune -exec /bin/rm -rf {} \;
/usr/bin/find /var/log/snort -name 'snort.log.*' -mtime +28 -exec /bin/rm -rf {} \;
/usr/local/bin/restartsnort
endscript
}
/var/log/squid/access.log /var/log/squid/user_agent.log /var/log/squid/referer.log {
weekly
copytruncate
ifempty
missingok
}
/var/log/squid/cache.log {
weekly
rotate 3
copytruncate
compress
missingok
}
/var/log/squid/store.log {
weekly
rotate 3
copytruncate
compress
missingok
postrotate
/bin/chmod -R ugo+rX /var/log/squid
/usr/sbin/squid -k rotate
endscript
}
/var/log/messages /var/log/boot.log /var/log/dhcpcd.log {
create 664 root syslogd
sharedscripts
ifempty
postrotate
/bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true
endscript
}
je remplacerais par
- Code: Tout sélectionner
# keep 52 weeks worth of backlogs
rotate 1
le reste d'après ce que j'ai pu comparé ici http://www.ipcop-forum.de/forum/viewtop ... c5e75ccc66 est identique.
affaire à suivre...