diff options
author | Sage Weil <sage@inktank.com> | 2012-12-04 05:25:52 -0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2012-12-04 05:25:52 -0800 |
commit | 3ace9a7c66c79847d215f4bd38f40ca8b07bab8e (patch) | |
tree | ac2f7e60042d2d204be6b091e591a88dfe058413 | |
parent | 2eee9e175e5797f9bb8f695cfdbfbe49b4befee9 (diff) | |
download | ceph-3ace9a7c66c79847d215f4bd38f40ca8b07bab8e.tar.gz |
logrotate: do not spam stdout
Avoid anything on stdout that will generate cron emails for people.
Reported-by: Stefan Priebe <s.priebe@profihost.ag>
Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r-- | src/logrotate.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/logrotate.conf b/src/logrotate.conf index c4857f00c10..9af310413d9 100644 --- a/src/logrotate.conf +++ b/src/logrotate.conf @@ -4,13 +4,13 @@ compress sharedscripts postrotate - if which invoke-rc.d && [ -x `which invoke-rc.d` ]; then + if which invoke-rc.d > /dev/null && [ -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 && [ -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 && [ -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 |