Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 - 1
# perform the log rotate every week
2
weekly
3
# keep the backup of 52 weeks
4
rotate 52
5
missingok
6
 
7
# compress the logs, but from the .2 onwards
8
compress
9
delaycompress
10
notifempty
11
 
12
# Rotate client logs
13
/var/log/glusterfs/*.log {
14
  sharedscripts
15
  postrotate
16
  /usr/bin/killall -HUP glusterfs > /dev/null 2>&1 || true
17
  /usr/bin/killall -HUP glusterd > /dev/null 2>&1 || true
18
  endscript
19
}
20
 
21
# Rotate server logs
22
/var/log/glusterfs/bricks/*.log {
23
  sharedscripts
24
  postrotate
25
  /usr/bin/killall -HUP glusterfsd > /dev/null 2>&1 || true
26
  endscript
27
}