From 991054fa6e3d8b3288679ebfe6d84bcfe3ca5d20 Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Sun, 24 Jun 2012 15:51:56 +0200 Subject: check_ping: Ignore ping(1)'s exit status Don't return a WARNING state if the number of lost packets is greater than zero but below the specified warning threshold. This happened because the check_ping plugin used the exit status of the ping(1) utility. (#3535140 - Tobias Brox) --- plugins/check_ping.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'plugins/check_ping.c') diff --git a/plugins/check_ping.c b/plugins/check_ping.c index 1367e903..bfdee492 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c @@ -500,9 +500,7 @@ run_ping (const char *cmd, const char *addr) (void) fclose (child_stderr); - /* close the pipe - WARNING if status is set */ - if (spclose (child_process)) - result = max_state (result, STATE_WARNING); + spclose (child_process); if (warn_text == NULL) warn_text = strdup(""); -- cgit v1.2.3