mirror of
https://github.com/ceph/ceph
synced 2025-02-07 10:53:30 +00:00
Apply the same change as commit d02340d90c
to
the radosgw logrotate.conf.
Signed-off-by: Gary Lowell <gary.lowell@inktank.com>
25 lines
881 B
Plaintext
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
|
|
}
|