summaryrefslogtreecommitdiffstats
path: root/sys-cluster/glusterfs/files/glusterfs.logrotate
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2019-09-02 05:23:45 +0200
committerSuren A. Chilingaryan <csa@suren.me>2019-09-02 05:23:45 +0200
commit576b6208d6defe240bfa2477d6dd19f1ed83bfaf (patch)
tree7d54883f16cccc4cbd414398d7fec3c437b36b49 /sys-cluster/glusterfs/files/glusterfs.logrotate
parentfdd6b67a78a966f6a2131de8fe0e539316511083 (diff)
downloaddarklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.tar.gz
darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.tar.bz2
darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.tar.xz
darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.zip
Cleaned most of outdated stuff
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
-}