mirror of
https://github.com/ceph/ceph
synced 2025-01-18 09:02:08 +00:00
14a9ca602f
In commit 7411c3c6a4
we generalized this
enumeration code by copying what was in the upstart scripts. However,
while the mon and mds directories get a 'done' file, the OSDs get a 'ready'
file. Bah! Trigger off of either one.
Backport: firefly
Signed-off-by: Sage Weil <sage@redhat.com>
30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
/var/log/ceph/*.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 ceph reload >/dev/null
|
|
elif which service > /dev/null 2>&1 && [ -x `which service` ]; then
|
|
service ceph 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
|
|
for daemon in osd mon mds ; do
|
|
find -L /var/lib/ceph/$daemon/ -mindepth 1 -maxdepth 1 -regextype posix-egrep -regex '.*/[A-Za-z0-9]+-[A-Za-z0-9._-]+' -printf '%P\n' \
|
|
| while read f; do
|
|
if [ -e "/var/lib/ceph/$daemon/$f/done" -o -e "/var/lib/ceph/$daemon/$f/ready" ] && [ -e "/var/lib/ceph/$daemon/$f/upstart" ] && [ ! -e "/var/lib/ceph/$daemon/$f/sysvinit" ]; then
|
|
cluster="${f%%-*}"
|
|
id="${f#*-}"
|
|
|
|
initctl reload ceph-$daemon cluster="$cluster" id="$id" 2>/dev/null || :
|
|
fi
|
|
done
|
|
done
|
|
fi
|
|
endscript
|
|
missingok
|
|
notifempty
|
|
}
|