Subversion Repositories oSiteChecker

Compare Revisions

Regard whitespace Rev 2 → Rev 3

/trunk/changelog.txt
1,3 → 1,11
2017-10-30 Marcus Uddenhed <marcus@osource.se>
 
* readme.txt (file): Change information and version number.
* oSiteChecker.sh (mail): Fixed pointer to mailx binary.
* oSiteChecker.sh (general): Default values for authenticated mail & logging is set to yes, time to use secure settings.
 
2017-08-30 Marcus Uddenhed <marcus@osource.se>
 
* readme.txt (file): Created.
/trunk/oSiteChecker.sh
1,17 → 1,17
#!/bin/bash
 
#
# Script that checks if given sites are up and sends an e-mail if they are not.
# Script that checks if given sites are up and sends an e-mail if the are not.
# You should not run this script on the same servers your monitoring,
# neither should your e-mail account reside on a server behind same firewall as the sites your checking.
#
# Developer: oSource Development
# DevTeam: Marcus Uddenhed
# Version: 0.5.0
# Version: 0.6.1
# Web: http://www.osource.se
# Updated: 2017-08-31
# Updated: 2017-10-30
#
# Requires: mailx (http://heirloom.sourceforge.net/mailx.html)
# Requires: heirloom-mailx (http://heirloom.sourceforge.net/mailx.html)
#
# Licensed under BSDL license, see license information on our homepage.
#
18,8 → 18,8
 
#### Global variables ####
# Sites
checkSite[1]="https://"; # Add sites that you want to monitor, can be as many as you want.
checkSite[2]="http://";
checkSite[1]="http://" # Add sites that you want to monitor, can be as many as you want.
checkSite[2]="https://"
 
# Retries
rInterval=8 # How many times should it retry until it set the site as down.
28,12 → 28,13
# Mail
sendMail=yes # Should i send an e-mail with failed sites.
mailFrom="" # From whom shall this mail be sent?
mailTo="" # To whom shall the mail be sent? Seperate recipients with a ","
mailTo="" # To whom shall the mail be sent?
smtpHost="" # The SMTP mail server that is going to process the mail.
smtpAuth=yes # Does the SMTP mail server require authentication(yes/no).
smtpUser="" # Username if smtpAuth is set to yes.
smtpPass="" # password if smtpAuth is set to yes.
smtpPort=587 # Standard for non authenticated SMTP is 25, 587 is for authenticated SMTP.
mailBin="heirloom-mailx" # executable file for mailx.
 
# Logging
logStatus=yes # Should we log to local logfile(yes/no).
139,14 → 140,14
echo "Your $(cat /etc/hostname) server." >> $tmpPath/mailbody.txt
 
# Send data
MAILRC=/dev/null mailx -n
MAILRC=/dev/null $mailBin -n
if [ $smtpAuth = "no" ]
then
env MAILRC=/dev/null from=$mailFrom smtp=$smtpHost:$smtpPort mailx -v -n -s "$mailSubject" $mailTo <$tmpPath/mailbody.txt
env MAILRC=/dev/null from=$mailFrom smtp=$smtpHost:$smtpPort $mailBin -v -n -s "$mailSubject" $mailTo <$tmpPath/mailbody.txt
fi
if [ $smtpAuth = "yes" ]
then
env MAILRC=/dev/null from=$mailFrom smtp=$smtpHost:$smtpPort smtp-auth-user=$smtpUser smtp-auth-password=$smtpPass smtp-use-starttls=yes ssl-verify=ignore smtp-auth=login mailx -n -s "$mailSubject" $mailTo <$tmpPath/mailbody.txt
env MAILRC=/dev/null from=$mailFrom smtp=$smtpHost:$smtpPort smtp-auth-user=$smtpUser smtp-auth-password=$smtpPass smtp-use-starttls=yes ssl-verify=ignore smtp-auth=login $mailBin -n -s "$mailSubject" $mailTo <$tmpPath/mailbody.txt
fi
 
# Remove temporary mailbody.txt file
185,14 → 186,14
echo "Your $(cat /etc/hostname) server." >> $tmpPath/mailbody.txt
 
# Send data
MAILRC=/dev/null mailx -n
MAILRC=/dev/null $mailBin -n
if [ $smtpAuth = "no" ]
then
env MAILRC=/dev/null from=$mailFrom smtp=$smtpHost:$smtpPort mailx -v -n -s "$mailSubject" $mailTo <$tmpPath/mailbody.txt
env MAILRC=/dev/null from=$mailFrom smtp=$smtpHost:$smtpPort $mailBin -v -n -s "$mailSubject" $mailTo <$tmpPath/mailbody.txt
fi
if [ $smtpAuth = "yes" ]
then
env MAILRC=/dev/null from=$mailFrom smtp=$smtpHost:$smtpPort smtp-auth-user=$smtpUser smtp-auth-password=$smtpPass smtp-use-starttls=yes ssl-verify=ignore smtp-auth=login mailx -n -s "$mailSubject" $mailTo <$tmpPath/mailbody.txt
env MAILRC=/dev/null from=$mailFrom smtp=$smtpHost:$smtpPort smtp-auth-user=$smtpUser smtp-auth-password=$smtpPass smtp-use-starttls=yes ssl-verify=ignore smtp-auth=login $mailBin -n -s "$mailSubject" $mailTo <$tmpPath/mailbody.txt
fi
 
# Remove temporary mailbody.txt file
199,6 → 200,14
rm $tmpPath/mailbody.txt
}
 
script_help() {
echo "Usage: oSiteChecker.sh <parameter>"
echo ""
echo "Parameters:"
echo "--check Does a test connection to pre-configured sites and test to see if they are responding."
echo "--mail-test Does a test on the mail function to see if all mail related settings are okay."
}
 
case $1 in
--check)
check_sites
/trunk/readme.txt
1,4 → 1,4
Release notes for oSiteChecker v0.5.0 2017-08-30
Release notes for oSiteChecker v0.6.1 2017-10-30
================================================
 
Overview:
14,7 → 14,7
Notes:
This script has been tested on Rasbian on a Raspberry PI, but should work on other Linux/Unix as long as Mailx dependency is met.
 
More info about mailx (http://heirloom.sourceforge.net/mailx.html)
More info about heirloom-mailx (http://heirloom.sourceforge.net/mailx.html)
 
Disclaimer:
This software is released with the BSDL license and the license is in the license.txt
21,5 → 21,4
file that should accompany this software.
 
Contact:
https://dev.osource.se/
https://www.osource.se/index.php/development/ositechecker/
https://www.osource.se/