#!/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
|