2 Commits
v1.1 ... v1.2

Author SHA1 Message Date
4bfcba966a Fixed a bug by esacping the -? option 2012-02-19 23:15:24 +01:00
52a0ae7f69 Added a README file 2012-01-26 01:46:37 +01:00
2 changed files with 21 additions and 2 deletions

19
README Normal file
View File

@@ -0,0 +1,19 @@
ABOUT
check_gputemp is a Nagios plugin which checks the GPU temperature of ATI based
graphics card. It uses the aticonfig tool from ATI's proprietary driver fglrx.
This script checks the GPU temperature of ATI based graphics card using the
aticonfig tool from their proprietary driver fglrx. The script is written in
Bash and complies with the Nagios development guidelines. For example it uses
the -w, -c and -v arguments, has some basic sanity checks and has an exit 3
catch all code. The script should behave like any other Nagios plugin.
It should run under any modern Linux distribution. It has been tested and known
to work under Debian based systems with Nagios 3.x
HISTORY
This plugin is based on check_temp which I wrote earlier this year. The code is
almost identical to it. Many thanks to Chad Columbus who sent me
bugfixes and corrections for check_temp. Without check_temp their would never
have been check_gputemp.
The plugin were submitted to Nagios Exchange in january 2012.

View File

@@ -28,7 +28,7 @@
# # # #
############################################################################### ###############################################################################
VERSION="Version 1.1" VERSION="Version 1.2"
AUTHOR="(c) 2011 Jack-Benny Persson (jack-benny@cyberinfo.se)" AUTHOR="(c) 2011 Jack-Benny Persson (jack-benny@cyberinfo.se)"
# Sensor program # Sensor program
@@ -150,7 +150,7 @@ while [[ -n "$1" ]]; do
shift 2 shift 2
;; ;;
-?) -\?)
print_help print_help
exit $STATE_OK exit $STATE_OK
;; ;;