blob: 2d891e37de2bb644669cc9315ade2227d6622c9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# see "man logrotate" for details
# rotate log files weekly
weekly
# keep 4 weeks worth of backlogs
rotate 4
# restrict maximum size of log files
#size 20M
# create new (empty) log files after rotating old ones
create
# uncomment this if you want your log files compressed
#compress
# Logs are moved into directory for rotation
# olddir /var/log/archive
# include ~/.config/logrotate.d
~/.log/a2j/a2j.log {
notifempty
copytruncate
missingok
}
~/.log/sway.log {
notifempty
copytruncate
missingok
}
|