aboutsummaryrefslogtreecommitdiff
path: root/contrib/check_hw.sh
diff options
context:
space:
mode:
authorGravatar Holger Weiss <holger@zedat.fu-berlin.de> 2013-09-02 13:16:24 +0200
committerGravatar Holger Weiss <holger@zedat.fu-berlin.de> 2013-09-02 13:16:24 +0200
commitb15adb7762b6caaecaa83637abfcf5fdb4802092 (patch)
tree64eddbe2aa1a7f98a140be0f7973f05d7a781ae0 /contrib/check_hw.sh
parentc4d5882b9e1d07c7b61091062b7d085fa5f00284 (diff)
downloadmonitoring-plugins-b15adb7762b6caaecaa83637abfcf5fdb4802092.tar.gz
Remove "contrib" plugins
These days, sites such as "Nagios Exchange" are a much better place for publishing plugins not maintained by the Plugins Development Team.
Diffstat (limited to 'contrib/check_hw.sh')
-rw-r--r--contrib/check_hw.sh66
1 files changed, 0 insertions, 66 deletions
diff --git a/contrib/check_hw.sh b/contrib/check_hw.sh
deleted file mode 100644
index 9d3b5743..00000000
--- a/contrib/check_hw.sh
+++ /dev/null
@@ -1,66 +0,0 @@
-#! /bin/sh
-#
-# Tested on SuSE 9.1 Professional with the hwinfo-8.62-0.2 package installed.
-#
-# Before you can run this plugin, you must do:
-# /usr/sbin/hwinfo --short > /etc/hw.original
-# add to cron job:
-# /usr/sbin/hwinfo --short > /etc/hw.current
-# /usr/bin/diff /etc/hw.original /etc/hw.current > /tmp/hw.check
-#
-#
-# Rok Debevc -- rok.debevc@agenda.si
-#
-#
-PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
-
-PROGNAME=`basename $0`
-PROGPATH=`echo $0 | sed -e 's,[\\/][^\\/][^\\/]*$,,'`
-REVISION=`echo '$Revision: 939 $' | sed -e 's/[^0-9.]//g'`
-
-. $PROGPATH/utils.sh
-
-
-print_usage() {
- echo "Usage: $PROGNAME"
-}
-
-print_help() {
- print_revision $PROGNAME $REVISION
- echo ""
- print_usage
- echo ""
- echo "This plugin checks hardware changes."
- echo ""
- support
- exit 0
-}
-
-case "$1" in
- --help)
- print_help
- exit 0
- ;;
- -h)
- print_help
- exit 0
- ;;
- --version)
- print_revision $PROGNAME $REVISION
- exit 0
- ;;
- -V)
- print_revision $PROGNAME $REVISION
- exit 0
- ;;
- *)
- if `du /tmp/hw.check | cut -c 1|grep "^[0]" > /dev/null` ; then
- echo No hardware is changed
- exit 0
- else
- echo ***hardware is changed*** look into /tmp/hw.check
- exit 2
- fi
- ;;
-esac
-