|
Log rotate includes all the files in /etc/logrotate.d/, hope you have kept you file inside this directory.
Is your configuration is like this ?
weekly Rotate logs weekly
rotate 4 Keep 4 weeks worth of backlogs
include /etc/logrotate.d/
/var/log/foo/access{
size=100k Rotate when it reaches a certain size
}
|