diff options
| author | Remi Collet <fedora@famillecollet.com> | 2011-12-29 07:46:49 +0100 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2011-12-29 07:46:49 +0100 | 
| commit | 2ca5865e2ce27d7b3f4f300773109fa36d553c64 (patch) | |
| tree | 1fd10d35694bad0776c1ba484477b6182c63ac40 /zarafa.logrotate | |
zarafa: import from f16
Diffstat (limited to 'zarafa.logrotate')
| -rw-r--r-- | zarafa.logrotate | 100 | 
1 files changed, 100 insertions, 0 deletions
| diff --git a/zarafa.logrotate b/zarafa.logrotate new file mode 100644 index 0000000..17a12ed --- /dev/null +++ b/zarafa.logrotate @@ -0,0 +1,100 @@ +/var/log/zarafa/archiver.log { +	weekly +	missingok +	rotate 52 +	compress +	delaycompress +	notifempty +	create 0644 zarafa zarafa +} + +/var/log/zarafa/dagent.log { +	weekly +	missingok +	rotate 52 +	compress +	delaycompress +	notifempty +	postrotate +			killall -HUP zarafa-dagent 2> /dev/null || true +	endscript +	create 0644 zarafa zarafa +} + +/var/log/zarafa/gateway.log { +	weekly +	missingok +	rotate 52 +	compress +	delaycompress +	notifempty +	postrotate +			killall -HUP zarafa-gateway 2> /dev/null || true +	endscript +	create 0644 zarafa zarafa +} + +/var/log/zarafa/ical.log { +	weekly +	missingok +	rotate 52 +	compress +	delaycompress +	notifempty +	postrotate +			killall -HUP zarafa-ical 2> /dev/null || true +	endscript +	create 0644 zarafa zarafa +} + +/var/log/zarafa/indexer.log { +	weekly +	missingok +	rotate 52 +	compress +	delaycompress +	notifempty +	postrotate +			killall -HUP zarafa-indexer 2> /dev/null || true +	endscript +	create 0644 zarafa zarafa +} + +/var/log/zarafa/monitor.log { +	weekly +	missingok +	rotate 52 +	compress +	delaycompress +	notifempty +	postrotate +			killall -HUP zarafa-monitor 2> /dev/null || true +	endscript +	create 0644 zarafa zarafa +} + +/var/log/zarafa/server.log /var/log/zarafa/audit.log { +	weekly +	missingok +	rotate 52 +	compress +	delaycompress +	notifempty +	postrotate +			killall -HUP zarafa-server 2> /dev/null || true +	endscript +	create 0644 zarafa zarafa +} + +/var/log/zarafa/spooler.log { +	weekly +	missingok +	rotate 52 +	compress +	delaycompress +	notifempty +	postrotate +			killall -HUP zarafa-spooler 2> /dev/null || true +	endscript +	create 0644 zarafa zarafa +} | 
