summaryrefslogtreecommitdiffstats
path: root/contrib/check_axis.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/check_axis.sh')
-rw-r--r--contrib/check_axis.sh95
1 files changed, 0 insertions, 95 deletions
diff --git a/contrib/check_axis.sh b/contrib/check_axis.sh
deleted file mode 100644
index 231d9da..0000000
--- a/contrib/check_axis.sh
+++ /dev/null
@@ -1,95 +0,0 @@
1#!/bin/sh
2
3box=$1
4port=$2
5usr=$3
6pass=$4
7
8if [ ! "$#" == "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"
10fi
11
12tempfile=/tmp/status-$box.tmp
13exit="3"
14
15ftp -in $box &>/dev/null <<EOF
16user $usr $pass
17passive
18prompt off
19lcd /tmp
20ascii
21get status $tempfile
22EOF
23
24if [ ! -e "$tempfile" ]; then
25 stdio="Status file could not be transferred from the Axis box." && rm -f $tempfile && echo $stdio && exit 2;
26fi
27
28lines=`cat $tempfile | grep -i $port`
29status=`echo $lines | awk '{ print $3 }'`
30if [ "$status" == "Printing" ]; then
31 bytes=`echo $lines | awk '{ print $4 }'`;
32 comments=`echo $lines | tr -d "
33" | awk '{ print $5 " " $6 }'`;
34else
35 comments=`echo $lines | tr -d "
36" | awk '{ print $4 " " $5 }'`;
37fi
38
39comma=`echo $comments | grep , | wc -l`
40if [ "$comma" -eq "1" ]; then
41 comments=`echo $comments | cut -d, -f1`
42fi
43
44
45if [ "$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
67elif [ "$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
91fi
92
93rm -f $tempfile
94echo $stdio
95exit $exit