=================================================================== RCS file: /cvs/nagios/check_hw_sensors/check_hw_sensors,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- nagios/check_hw_sensors/check_hw_sensors 2006/05/03 04:31:22 1.10 +++ nagios/check_hw_sensors/check_hw_sensors 2006/05/03 21:01:09 1.11 @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $RedRiver: check_hw_sensors,v 1.9 2006/05/03 02:26:47 andrew Exp $ +# $RedRiver: check_hw_sensors,v 1.10 2006/05/03 03:31:22 andrew Exp $ ######################################################################## # check_hw_sensors *** A nagios check for OpenBSD hw.sensors # @@ -64,7 +64,7 @@ } if ($opt_V) { - print_revision($PROGNAME,'$Revision: 1.10 $ '); + print_revision($PROGNAME,'$Revision: 1.11 $ '); exit $ERRORS{'OK'}; } @@ -419,7 +419,7 @@ low, high, crit, warn, crit.low, crit.high, warn.low, warn.high An ENTRY depends on the type. The descriptions in sensorsd.conf(5) can be used when appropriate, or you can use the following: - volts_dc, fanrpm or raw - Anything that includes digits. Anything that isn't a digit or period is stripped from the entry and the sensor output and they are compared. + volts_dc, fanrpm or raw - Anything that includes digits. Both the value of the check and the value of the sensor response that are not either a digit or period are stripped and then the two resultant values are compared. temp - Can be as above, but if the entry has an F in it, it compares farenheit, otherwise it uses celcius. indicator or drive - does a case sensitive match of each entry in the comma separated list and if it does not match any of the entries, it matches the status. @@ -429,6 +429,6 @@ EOL - print_revision($PROGNAME, '$Revision: 1.10 $'); + print_revision($PROGNAME, '$Revision: 1.11 $'); }