Blame | Last modification | View Log | RSS feed
# Rotate client logs
/var/log/glusterfs/*.log {
sharedscripts
weekly
maxsize 10M
minsize 100k
# 6 months of logs are good enough
rotate 26
missingok
compress
delaycompress
notifempty
postrotate
/usr/bin/killall -HUP glusterfs > /dev/null 2>&1 || true
/usr/bin/killall -HUP glusterd > /dev/null 2>&1 || true
endscript
}
# Rotate server logs
/var/log/glusterfs/bricks/*.log {
sharedscripts
weekly
maxsize 10M
minsize 100k
# 6 months of logs are good enough
rotate 26
missingok
compress
delaycompress
notifempty
postrotate
/usr/bin/killall -HUP glusterfsd > /dev/null 2>&1 || true
endscript
}
/var/log/glusterfs/samples/*.samp {
daily
rotate 3
sharedscripts
missingok
compress
delaycompress
}