Project

General

Profile

Bug #3236 ยป logrotate.d.ceph.diff

patch to check for existence of init.d control scripts before executing - Tobias Florek, 10/01/2012 01:31 AM

View differences:

ceph 2012-10-01 10:29:08.033018340 +0200
compress
sharedscripts
postrotate
invoke-rc.d ceph reload >/dev/null || service ceph reload >/dev/null
# upstart reload isn't very helpful here:
# https://bugs.launchpad.net/upstart/+bug/1012938
for type in mon osd mds; do
initctl list \
| perl -ne 'print "$+{service} cluster=$+{cluster} id=$+{id}\n" if m{^(?<service>ceph-(mon|osd|mds)+)\s+\((?<cluster>[^/)]+)/(?<id>[^)]+)\) start/}' \
| while read l; do
initctl reload -- $l 2>/dev/null || :
done
done
if [ -x `which invoke-rc.d` ]
then
invoke-rc.d ceph reload >/dev/null
elif [ -x `which service` ]
service ceph reload >/dev/null
elif [ -x `which initctl` ]
# upstart reload isn't very helpful here:
# https://bugs.launchpad.net/upstart/+bug/1012938
for type in mon osd mds; do
initctl list \
| perl -ne 'print "$+{service} cluster=$+{cluster} id=$+{id}\n" if m{^(?<service>ceph-(mon|osd|mds)+)\s+\((?<cluster>[^/)]+)/(?<id>[^)]+)\) start/}' \
| while read l; do
initctl reload -- $l 2>/dev/null || :
done
done
fi
endscript
missingok
}
    (1-1/1)