diff options
Diffstat (limited to 'extras/glusterfs-georep-logrotate')
| -rw-r--r-- | extras/glusterfs-georep-logrotate | 59 | 
1 files changed, 33 insertions, 26 deletions
diff --git a/extras/glusterfs-georep-logrotate b/extras/glusterfs-georep-logrotate index 85e69d2c0d4..381db8ba464 100644 --- a/extras/glusterfs-georep-logrotate +++ b/extras/glusterfs-georep-logrotate @@ -1,36 +1,43 @@ - -rotate 52 -missingok - -compress -delaycompress -notifempty -  /var/log/glusterfs/geo-replication/*/*.log { -  sharedscripts -  postrotate -  for pid in `ps -aef | grep glusterfs | egrep "\-\-aux-gfid-mount" | awk '{print $2}'`; do -    /usr/bin/kill -HUP $pid > /dev/null 2>&1 || true -  done -  endscript +    sharedscripts +    rotate 52 +    missingok +    compress +    delaycompress +    notifempty +    postrotate +    for pid in `ps -aef | grep glusterfs | egrep "\-\-aux-gfid-mount" | awk '{print $2}'`; do +        /usr/bin/kill -HUP $pid > /dev/null 2>&1 || true +    done +     endscript  }  /var/log/glusterfs/geo-replication-slaves/*.log { -  sharedscripts -  postrotate -  for pid in `ps -aef | grep glusterfs | egrep "\-\-aux-gfid-mount" | awk '{print $2}'`; do -    /usr/bin/kill -HUP $pid > /dev/null 2>&1 || true -  done -  endscript +    sharedscripts +    rotate 52 +    missingok +    compress +    delaycompress +    notifempty +    postrotate +    for pid in `ps -aef | grep glusterfs | egrep "\-\-aux-gfid-mount" | awk '{print $2}'`; do +        /usr/bin/kill -HUP $pid > /dev/null 2>&1 || true +    done +    endscript  }  /var/log/glusterfs/geo-replication-slaves/*/*.log { -  sharedscripts -  postrotate -  for pid in `ps -aef | grep glusterfs | egrep "\-\-aux-gfid-mount" | awk '{print $2}'`; do -    /usr/bin/kill -HUP $pid > /dev/null 2>&1 || true -  done -  endscript +    sharedscripts +    postrotate +    rotate 52 +    missingok +    compress +    delaycompress +    notifempty +    for pid in `ps -aef | grep glusterfs | egrep "\-\-aux-gfid-mount" | awk '{print $2}'`; do +        /usr/bin/kill -HUP $pid > /dev/null 2>&1 || true +    done +    endscript  }  | 
