Package: ceph Version: 0.94.3-1 Severity: important Tags: patch Dear Maintainer,
the logrotate script tries to detect the init system, but fails with systemd because it finds invoke-rc.d, which is installed by default. Upstream fixed this already in a pretty universal way (commit c1b28591a2ba55abd644186938d440fc90743f15), could you please include the attached patch with the next upload? Thanks, ~David -- System Information: Debian Release: 8.2 APT prefers stable APT policy: (990, 'stable'), (500, 'stable-updates') Architecture: amd64 (x86_64) Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Init: systemd (via /run/systemd/system)
diff --git a/src/logrotate.conf b/src/logrotate.conf index 1833d55..50e7ee8 100644 --- a/src/logrotate.conf +++ b/src/logrotate.conf @@ -4,25 +4,7 @@ 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 + killall -q -1 ceph-mon ceph-mds ceph-osd || true endscript missingok notifempty