mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 10:39:53 +00:00
munin_events: fix plugin having too much output
in 56cd2c926c
"&> /dev/null" was converted
to posix in an invalid way, should have been ">/dev/null 2>&1"
This commit is contained in:
parent
74c7fc3d86
commit
f184607bbc
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue