diff options
| -rw-r--r-- | extras/glusterfs-logrotate | 21 | 
1 files changed, 21 insertions, 0 deletions
diff --git a/extras/glusterfs-logrotate b/extras/glusterfs-logrotate index 75f700e6459..6ba6ef18e9f 100644 --- a/extras/glusterfs-logrotate +++ b/extras/glusterfs-logrotate @@ -45,3 +45,24 @@    compress    delaycompress  } + +# Rotate snapd log +/var/log/glusterfs/snaps/*/*.log { +    sharedscripts +    weekly +    maxsize 10M +    minsize 100k + +    # 6 months of logs are good enough +    rotate 26 + +    missingok +    compress +    delaycompress +    notifempty +    postrotate +    for pid in `ps -aef | grep glusterfs | egrep "snapd" | awk '{print $2}'`; do +        /usr/bin/kill -HUP $pid > /dev/null 2>&1 || true +    done +    endscript +}  | 
