Browse Source

check_junos: 'chassis_environment' check: Use WARNING if no components found.

Sebastian Harl 13 years ago
parent
commit
f53f346797
1 changed files with 1 additions and 1 deletions
  1. 1 1
      check_junos.pl

+ 1 - 1
check_junos.pl

@@ -400,7 +400,7 @@ sub check_chassis_environment
 	}
 
 	if (! $items_count) {
-		$plugin->add_message(UNKNOWN, "no components found");
+		$plugin->add_message(WARNING, "no components found");
 	}
 	elsif ($items_count == $items_ok) {
 		$plugin->add_message(OK, "$items_ok components OK");