From 114016b46110cfcf6cfd5ac838b831dac7319a1d Mon Sep 17 00:00:00 2001 From: Olivier Mehani Date: Mon, 17 Oct 2016 20:08:06 +1100 Subject: [PATCH] [systemd] Warn on the first failed service Signed-off-by: Olivier Mehani --- plugins/system/systemd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/system/systemd b/plugins/system/systemd index 810c3b07..b12b7cc6 100755 --- a/plugins/system/systemd +++ b/plugins/system/systemd @@ -59,7 +59,7 @@ for state in $states; do echo "$state.label $state" echo "$state.draw AREASTACK" if [ $state = failed ]; then - echo "$state.warning 1" + echo "$state.warning 0" echo "$state.critical 10" fi done