In a normal logrotate.d configuration file, is there any way to set an unlimited amount of potential logs?
The only thing I can seem to come up with is setting it at some crazy number that will never be met. Something like:
/var/log/app/* {
missingok
weekly
copytruncate
rotate 10000000000
compress
notifempty
olddir /var/log/app/old
}
But that seems pretty hacky to me.