diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2003-09-17 19:05:49 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2003-09-17 19:05:49 (GMT) |
commit | 5b37f0dd4a60cc987ebc38fd7433fb987c6b1771 (patch) | |
tree | 0367771c5a6f5f88f3ecebc960ac5c9153eadb22 /contrib/aix/check_dsk | |
parent | dd3498f6b29544bd772ea4e002bb02710a9000f2 (diff) | |
download | monitoring-plugins-5b37f0dd4a60cc987ebc38fd7433fb987c6b1771.tar.gz |
Plugins obsolete from main check_disk and check_ping
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@738 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'contrib/aix/check_dsk')
-rw-r--r-- | contrib/aix/check_dsk | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/contrib/aix/check_dsk b/contrib/aix/check_dsk deleted file mode 100644 index c8ddb3f..0000000 --- a/contrib/aix/check_dsk +++ /dev/null | |||
@@ -1,62 +0,0 @@ | |||
1 | #! /bin/sh | ||
2 | |||
3 | #====================================================================== | ||
4 | # Disk Checker utility | ||
5 | # | ||
6 | # Simple little script that checks the status of all partitions | ||
7 | # on a node's hard disks. It will produce a warning alert and list | ||
8 | # the offending filesystems in nagios. | ||
9 | # | ||
10 | # Authors: SpEnTBoY | ||
11 | # TheRocker | ||
12 | # | ||
13 | # Email: lonny@abyss.za.org | ||
14 | # therocker@pawprints.2y.net | ||
15 | #===================================================================== | ||
16 | |||
17 | NUMBER=`rsh $1 -l root df -kP | grep -v ":" | grep -E "9[0-9]%" | tr -s ' '| cut -d' ' -f5 | cut -c1-2 | line` | ||
18 | TMPFILE=/tmp/tmp.hndl | ||
19 | TMPTOO=/tmp/two.hndl | ||
20 | |||
21 | if [ "$NUMBER" -gt 90 ] | ||
22 | then | ||
23 | |||
24 | `rsh $1 -l root df -kP |grep -v ":" | grep -E "9[0-9]%" | tr -s ' '| cut -d' ' -f6,5 >> $TMPFILE` | ||
25 | |||
26 | LINES=`wc -l /tmp/tmp.hndl | cut -c8` | ||
27 | LINESCTL=`wc -l /tmp/tmp.hndl | cut -c8 ` | ||
28 | echo "Filesystems over 90% --> \c" | ||
29 | |||
30 | #====================================================================== | ||
31 | # You'll see this one in a few our shell scripts. Just chcecking for | ||
32 | # multiple occurances of the warnign condition. We gotta list 'em all | ||
33 | #====================================================================== | ||
34 | |||
35 | while [ $LINESCTL != 0 ] | ||
36 | do | ||
37 | |||
38 | cat $TMPFILE | tail -$LINESCTL > $TMPTOO | ||
39 | cat $TMPTOO > $TMPFILE | ||
40 | LINESCTL=$(( $LINESCTL -1 )) | ||
41 | LINES=$(( $LINES -1 )) | ||
42 | DATA=`head -1 /tmp/tmp.hndl` | ||
43 | echo "( $DATA ) \c" | ||
44 | |||
45 | |||
46 | done | ||
47 | echo "\n" | ||
48 | |||
49 | #=============================================================== | ||
50 | # Clean up all those nasty tmp files that suck up valuable | ||
51 | # disk realestate. | ||
52 | #=============================================================== | ||
53 | |||
54 | rm -f $TMPFILE | ||
55 | rm -f $TMPTOO | ||
56 | exit 1 | ||
57 | |||
58 | else | ||
59 | |||
60 | echo "No Filesystems over 90%... OK" | ||
61 | exit 0 | ||
62 | fi | ||