summaryrefslogtreecommitdiffstats
path: root/sys-cluster/glusterfs/files/glusterfs.logrotate
diff options
context:
space:
mode:
Diffstat (limited to 'sys-cluster/glusterfs/files/glusterfs.logrotate')
-rw-r--r--sys-cluster/glusterfs/files/glusterfs.logrotate34
1 files changed, 0 insertions, 34 deletions
diff --git a/sys-cluster/glusterfs/files/glusterfs.logrotate b/sys-cluster/glusterfs/files/glusterfs.logrotate
deleted file mode 100644
index 07ae7b9..0000000
--- a/sys-cluster/glusterfs/files/glusterfs.logrotate
+++ /dev/null
@@ -1,34 +0,0 @@
-# Rotate client logs
-/var/log/glusterfs/*.log {
- weekly
- rotate 52
- missingok
-
- # compress the logs, but from the .2 onwards
- compress
- delaycompress
- notifempty
-
- 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 {
- weekly
- rotate 52
- missingok
-
- # compress the logs, but from the .2 onwards
- compress
- delaycompress
- notifempty
-
- sharedscripts
- postrotate
- /usr/bin/killall -HUP glusterfsd > /dev/null 2>&1 || true
- endscript
-}