Question : Expand bash script for linux into threads

This is a follow up to a question I had last night, where I got pretty good help right away(make a long story short, login to a webserver was solved using PERL)

What I want to expand on now, is as following; we have Nagios 3 running, and AFAIK it uses the exit codes to determine wether or not to raise an alarm.

It is in that spirit I've written this script as posted below.
It works now that if it finds one of the combinations of username/password incorrect in the external script it calls, it will then return an error code, move to the "else" and then post a log, before it exits with code 2 for ERROR

What I want todo, is if it is down, it should exit with error code 2, but before that, also check the 3 others.

How can I tell what error code it is to use at the end if it is to check all 3. Now it stops at the first that fails.
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
#!/bin/sh
 
echo ""
echo "||----------------------------------------||"
echo "|| GroupWise WebAccess sjekker            ||"
echo "|| Laget av Rune Darrud, BKB Data         ||"
echo "|| Versjon 4 - 18 november, 2008          ||"
echo "||----------------------------------------||"
echo ""
 
LOGGFIL=./logg.txt
GWWEBACC=./webacc
TEMPSAK=./temp.temp
PK1=./postkontor1.sh
PK2=./postkontor2.sh
PK3=./postkontor3.sh
 
# Date
DATE=$(date "+%Y.%m.%d %T")
 
TEXTTING=Login
PK1NAVN="****"
PK2NAVN="****"
PK3NAVN="****"
 
# Checking if the front page exists.
wget -q --no-check-certificate https://webmail/gw/webacc -O $GWWEBACC > $TEMPSAK
grep -q "$TEXTTING" $GWWEBACC
if [ $? -eq 0 ]
then 
 rm $GWWEBACC
 rm $TEMPSAK
else
 rm $GWWEBACC
 rm $TEMPSAK
 exit 2
fi
 
# Checking the first login
perl $PK1 > $TEMPSAK
grep -q "$PK1NAVN" $TEMPSAK
if [ $? -eq 0 ]
then
 rm $TEMPSAK
else
 rm $TEMPSAK
 exit 2
fi
 
# Checking the second login
perl $PK2 > $TEMPSAK
grep -q "$PK2NAVN" $TEMPSAK
if [ $? -eq 0 ]
then
 rm $TEMPSAK
else
 rm $TEMPSAK
 exit 2
fi
 
# Checking the third login
perl $PK3 > $TEMPSAK
grep -q "$PK3NAVN" $TEMPSAK
if [ $? -eq 0 ]
then
 rm $TEMPSAK
else
 rm $TEMPSAK
 exit 2
fi
echo $DATE - OK : ALT OK! >> $LOGGFIL
 
# Rydder opp
exit 0
Open in New Window Select All

Answer : Expand bash script for linux into threads

The last line

echo $DATE - OK : ALT OK! >> $LOGGFIL

should be changed to

if [ $ExitCode -eq 0 ]
then
 echo $DATE - OK : ALT OK! >> $LOGGFIL
else
 exit $ExitCode
fi
Random Solutions  
 
programming4us programming4us