Created
February 9, 2022 12:25
-
-
Save fmitha/29474d0f4a7772694e3d8de9498f5295 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# see "man logrotate" for details | |
# global options do not affect preceding include directives | |
# rotate log files weekly | |
weekly | |
# keep 4 weeks worth of backlogs | |
rotate 4 | |
# create new (empty) log files after rotating old ones | |
create | |
# use date as a suffix of the rotated file | |
#dateext | |
# uncomment this if you want your log files compressed | |
#compress | |
# packages drop log rotation information into this directory | |
include /etc/logrotate.d | |
# system-specific logs may also be configured here. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment