From f184607bbcf144cb47136ef7eda7001b204e537c Mon Sep 17 00:00:00 2001 From: Andreas Perhab Date: Fri, 19 Nov 2021 09:01:23 +0100 Subject: [PATCH] munin_events: fix plugin having too much output in 56cd2c926ca99e396a0b6c2ebee76394bb4de195 "&> /dev/null" was converted to posix in an invalid way, should have been ">/dev/null 2>&1" --- plugins/munin/munin_events | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/munin/munin_events b/plugins/munin/munin_events index 73f36dd0..e007ae72 100755 --- a/plugins/munin/munin_events +++ b/plugins/munin/munin_events @@ -87,7 +87,7 @@ values() { do_value 'munin_error' 'ERROR' do_value 'munin_fatal' 'FATAL' # Set offset - "$logtail_bin" "$muninupdate" > /dev/null 1>&2 + "$logtail_bin" "$muninupdate" >/dev/null 2>&1 chmod 640 "${muninupdate}.offset" }