]> git.pld-linux.org Git - packages/ceph.git/blobdiff - ceph.logrotate.patch
- updated to 0.59
[packages/ceph.git] / ceph.logrotate.patch
index fd849758dafe34f4518d36e9e227ae6b69b5e2d1..6bddd00f1bbb1cec8781754cdf5634966ea9ed33 100644 (file)
@@ -1,25 +1,23 @@
---- ceph-0.55.1/src/logrotate.conf.orig        2012-12-15 15:11:13.516032449 +0100
-+++ ceph-0.55.1/src/logrotate.conf     2012-12-15 15:16:52.636025383 +0100
-@@ -4,23 +4,7 @@
+--- ceph-0.58/src/logrotate.conf.orig  2013-03-08 22:30:48.205300063 +0100
++++ ceph-0.58/src/logrotate.conf       2013-03-08 22:31:18.038632150 +0100
+@@ -4,21 +4,7 @@
      compress
      sharedscripts
      postrotate
--        if which invoke-rc.d && [ -x `which invoke-rc.d` ]; then
+-        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 && [ -x `which service` ]; then
+-        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 && [ -x `which initctl` ]; then
+-        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
--            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
+-          initctl list \
+-              | sed -n 's/^\(ceph-\(mon\|osd\|mds\)\+\)[ \t]\+(\([^ \/]\+\)\/\([^ \/]\+\))[ \t]\+start\/.*$/\1 cluster=\3 id=\4/p' \
+-              | while read l; do
+-              initctl reload -- $l 2>/dev/null || :
+-          done
 -        fi
 +        service ceph reload >/dev/null 2>/dev/null
      endscript
This page took 0.149226 seconds and 4 git commands to generate.