summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Lowell <glowell@inktank.com>2013-02-06 11:45:30 -0800
committerGary Lowell <glowell@inktank.com>2013-02-06 11:45:30 -0800
commit9871cf275177d75d095e4341e71df841a4ef9618 (patch)
treedbc44247e0337278dd06d50a37d1518047dc1d4b
parentd02340d90c9d30d44c962bea7171db3fe3bfba8e (diff)
downloadceph-9871cf275177d75d095e4341e71df841a4ef9618.tar.gz
logrotate.conf: Silence rgw logrotate some more
Apply the same change as commit d02340d90c9d30d44c962bea7171db3fe3bfba8e to the radosgw logrotate.conf. Signed-off-by: Gary Lowell <gary.lowell@inktank.com>
-rw-r--r--src/rgw/logrotate.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rgw/logrotate.conf b/src/rgw/logrotate.conf
index ae45e393546..7fb3391bbec 100644
--- a/src/rgw/logrotate.conf
+++ b/src/rgw/logrotate.conf
@@ -4,13 +4,13 @@
compress
sharedscripts
postrotate
- if which invoke-rc.d > /dev/null && [ -x `which invoke-rc.d` ]; then
+ 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 && [ -x `which service` ]; then
+ 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 && [ -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
initctl list \