summaryrefslogtreecommitdiffstats
path: root/extras/glusterfs-logrotate
diff options
context:
space:
mode:
authorAmar Tumballi <amar@gluster.com>2011-07-04 23:25:57 +0000
committerAnand Avati <avati@gluster.com>2011-07-12 00:07:23 -0700
commit2bf588bfc2eaaa880f73b035670e4e4d47ac36d3 (patch)
tree4e95ebdc028fb6f55739ab86982de04ad6d23391 /extras/glusterfs-logrotate
parent3ac3584a55c500230e747c101c7040792a53813d (diff)
add 'logrotate' config file to the package
Signed-off-by: Amar Tumballi <amar@gluster.com> Signed-off-by: Anand Avati <avati@gluster.com> BUG: 2053 (We need to support the standard *nix 'logrotate' for server and client log files.) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2053
Diffstat (limited to 'extras/glusterfs-logrotate')
-rw-r--r--extras/glusterfs-logrotate27
1 files changed, 27 insertions, 0 deletions
diff --git a/extras/glusterfs-logrotate b/extras/glusterfs-logrotate
new file mode 100644
index 00000000000..373ec2e0b92
--- /dev/null
+++ b/extras/glusterfs-logrotate
@@ -0,0 +1,27 @@
+# perform the log rotate every week
+weekly
+# keep the backup of 52 weeks
+rotate 52
+missingok
+
+# compress the logs, but from the .2 onwards
+compress
+delaycompress
+notifempty
+
+# Rotate client logs
+/var/log/glusterfs/*.log {
+ sharedscripts
+ 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
+ postrotate
+ /usr/bin/killall -HUP glusterfsd > /dev/null 2>&1 || true
+ endscript
+}