ceph/src/rgw/logrotate.conf
Gary Lowell 9871cf2751 logrotate.conf: Silence rgw logrotate some more
Apply the same change as commit d02340d90c to
the radosgw logrotate.conf.

Signed-off-by: Gary Lowell  <gary.lowell@inktank.com>
2013-02-06 11:45:30 -08:00

25 lines
881 B
Plaintext

/var/log/radosgw/*.log {
rotate 7
daily
compress
sharedscripts
postrotate
if which invoke-rc.d > /dev/null 2>&1 && [ -x `which invoke-rc.d` ]; then
invoke-rc.d radosgw reload >/dev/null
elif which service > /dev/null 2>&1 && [ -x `which service` ]; then
service radosgw reload >/dev/null
fi
# Possibly reload twice, but depending on ceph.conf the reload above may be a no-op
if which initctl > /dev/null 2>&1 && [ -x `which initctl` ]; then
# upstart reload isn't very helpful here:
# https://bugs.launchpad.net/upstart/+bug/1012938
initctl list \
| sed -n 's/^\(radosgw\+\)[ \t]\+(\([^ \/]\+\)\/\([^ \/]\+\))[ \t]\+start\/.*$/\1 cluster=\2 id=\3/p' \
| while read l; do
initctl reload -- $l 2>/dev/null || :
done
fi
endscript
missingok
}