Code

Fix for regex input of '|', being output causing problems with Nagios' parsing of
[nagiosplug.git] / contrib / check_axis.sh
1 #!/bin/sh
3 box=$1
4 port=$2
5 usr=$3
6 pass=$4
8 if [ ! "$#" == "4" ]; then
9         echo -e "\nYou did not supply enough command line arguments. \nUsage: ./check_axis.sh <host> <port> <username> <password> \n \nCheck_axis.sh checks the status of LPT ports on Axis print servers. \nIt was written by Tom De Blende (tom.deblende@village.uunet.be) in 2002. \n" && exit "3"
10 fi
12 tempfile=/tmp/status-$box.tmp
13 exit="3"
15 ftp -in $box &>/dev/null <<EOF
16 user $usr $pass
17 passive
18 prompt off
19 lcd /tmp
20 ascii
21 get status $tempfile
22 EOF
24 if [ ! -e "$tempfile" ]; then
25         stdio="Status file could not be transferred from the Axis box." && rm -f $tempfile && echo $stdio && exit 2;
26 fi
28 lines=`cat $tempfile | grep -i $port`
29 status=`echo $lines | awk '{ print $3 }'`
30 if [ "$status" == "Printing" ]; then
31         bytes=`echo $lines | awk '{ print $4 }'`;
32         comments=`echo $lines | tr -d "
33 " | awk '{ print $5 " " $6 }'`;
34 else
35         comments=`echo $lines | tr -d "
36 " | awk '{ print $4 " " $5 }'`;
37 fi
39 comma=`echo $comments | grep , | wc -l`
40 if [ "$comma" -eq "1" ]; then
41         comments=`echo $comments | cut -d, -f1`
42 fi
43         
45 if [ "$status" == "Available" ]; then
46         if [ "$comments" == "Paper out" ]; then
47                 exit="1" && stdio="WARNING - Out of paper.";
48         elif [ "$comments" == " " ]; then
49                 exit="0" && stdio="OK - Printer is available but returns no comments.";
50         elif [ "$comments" == "No error" ]; then
51                 exit="0" && stdio="OK - No error.";
52         elif [ "$comments" == "Ready " ]; then
53                 exit="0" && stdio="OK - Ready.";
54         elif [ "$comments" == "Off line" ]; then
55                 exit="1" && stdio="WARNING - Printer is off line.";        
56         elif [ "$comments" == "Out of" ]; then
57                 exit="1" && stdio="WARNING - Out of paper.";    
58         elif [ "$comments" == "Busy Out" ]; then
59                 exit="1" && stdio="WARNING - Busy, out of paper.";
60         elif [ "$comments" == "Printer off-line" ]; then
61                 exit="1" && stdio="WARNING - Printer is off line.";     
62         elif [ "$comments" == "Printer fault" ]; then
63                 exit="2" && stdio="CRITICAL - Printer fault.";
64         else
65                 exit="3" && stdio="Comments: $comments";
66         fi
67 elif [ "$status" == "Printing" ]; then
68         if [ "$comments" == "Printer busy" ]; then
69                 exit="0" && stdio="OK - PRINTING. Bytes printed: $bytes.";
70         elif [ "$comments" == "No error" ]; then
71                 exit="0" && stdio="OK - PRINTING. Bytes printed: $bytes.";        
72         elif [ "$comments" == "Paper out" ]; then
73                 exit="1" && stdio="WARNING - PRINTING. Out of paper.";
74         elif [ "$comments" == "Out of" ]; then
75                 exit="1" && stdio="WARNING - PRINTING. Out of paper. Bytes printed: $bytes.";        
76         elif [ "$comments" == "Busy Out" ]; then
77                 exit="1" && stdio="WARNING - Busy, out of paper.";
78         elif [ "$comments" == "Ready " ]; then
79                 exit="0" && stdio="OK - PRINTING. Bytes printed: $bytes.";        
80         elif [ "$comments" == "Printer off-line" ]; then
81                 exit="1" && stdio="WARNING - PRINTING. Printer is off line.";
82         elif [ "$comments" == "Busy " ]; then
83                 exit="0" && stdio="OK - PRINTING. Busy. Bytes printed: $bytes.";        
84         elif [ "$comments" == "Off line" ]; then
85                 exit="1" && stdio="WARNING - PRINTING. Printer is off line.";
86         elif [ "$comments" == "Printer fault" ]; then
87                 exit="2" && stdio="CRITICAL - PRINTING. Printer fault. Bytes printed: $bytes.";        
88         else
89                 exit="3" && stdio="Comments: $comments.";
90         fi
91 fi
93 rm -f $tempfile
94 echo $stdio
95 exit $exit