serverscripts/check_updates_deb.sh

155 lines
3.7 KiB
Bash
Raw Normal View History

2014-11-20 23:24:10 +10:00
#!/bin/bash
# Script Name: check_updates_deb
# Author Name: Matt McKinnon
# Date: 7th June 2016
# Description: For use on Debian Based Systems
# This script will:
2014-11-20 23:24:10 +10:00
# Clean up the local apt repository of retrieved packages (apt-get clean)
# Resync the package index (apt-get update)
# If called with AUTOUPDATE set to yes then updates will be downloaded and applied with no feed back (not recommended)
# If called without AUTOUPDATE then packages are downloaded and an email is sent informing which packages are to be updated.
# And more ;-)
# NOTE: Perl is needed for this script to work.
#
# Make user configuration changes in this section
#
MAIL="support@comprofix.com"
O365_SMTP=$(grep SMTP office365.conf | awk -F'=' '{print $2}')
O365_USER=$(grep USER office365.conf | awk -F'=' '{print $2}')
O365_PASS=$(grep PASS office365.conf | awk -F'=' '{print $2}')
2014-11-20 23:24:10 +10:00
AUTOUPDATE="no"
LOGFILE="/var/log/server_maint.log"
THISSERVER=$(hostname -f)
2014-11-20 23:24:10 +10:00
#
# End of user configuration section
#
DASHES="---------------------------------------------------------------------------------"
DASHES2="================================================================================="
# Check if the script is being run as root exit if it is not.
if [ $(id -u) -ne 0 ]
then
echo "You need to be root to run this script."
exit 1
2014-11-20 23:24:10 +10:00
fi
startlogging() {
echo $DASHES2 >> $LOGFILE
echo "$0 started running at $(date)" >> $LOGFILE
2014-11-20 23:24:10 +10:00
echo $DASHES2 >> $LOGFILE
}
stoplogging() {
echo "$(date) [MESSAGE] $0 finished runnning" >> $LOGFILE
2014-11-20 23:24:10 +10:00
echo $DASHES >> $LOGFILE
}
check_return() {
if [ "$?" -ne "0" ]
then
echo "$(date) [ERROR] $1 failed to run" >> $LOGFILE
2014-11-20 23:24:10 +10:00
send_error_email $1
stoplogging
exit 1
fi
echo "$(date) [SUCCESS] $1 ran without error" >> $LOGFILE
2014-11-20 23:24:10 +10:00
}
send_error_email() {
sendemail -f "$THISSERVER <$MAILFROM>" -t $MAILTO -u "[$THISSERVER] There was an error whilst running $0" -s $SMTP
2014-11-20 23:24:10 +10:00
"Hello,
Whilst running the update script ($0) on $THISSERVER there was a problem.
[ERROR] "$1" failed to run
The server has the following network interfaces configured ${SERVERADDS[@]}.
Please log in via ssh (e.g. ssh root@$(hostname -f)) and check the log file:
2014-11-20 23:24:10 +10:00
vim $LOGFILE
Regards."
}
# IP Address stuff
declare -a IPADDR
declare -a NICINTERFACE
declare -a SERVERADDS
index=0
for i in $( ifconfig | grep 'inet addr' | awk '{print $2}'| sed 's#addr:##g' );
do
IPADDR[$index]=$i
let "index += 1"
done
index=0
for i in $( ifconfig | grep 'eth' | awk '{print $1}' );
do
SERVERADDS[$index]="$i ${IPADDR[$index]}"
let "index += 1"
done
# End IP Address stuff
2014-11-20 23:24:10 +10:00
startlogging
apt-get clean > /dev/null
check_return "apt-get clean"
apt-get update > /dev/null
check_return "apt-get update"
if [[ "$AUTOUPDATE" == "yes" ]]
then
apt-get -yqq upgrade > /dev/null
check_return "apt-get -yq upgrade"
else
PACKAGES_TO_BE_UPGRADED=$(apt-get -Vs upgrade | perl -ne 'print if /upgraded:/ .. /upgraded,/')
2014-11-20 23:24:10 +10:00
apt-get -yqd upgrade > /dev/null
check_return "apt-get -yqd upgrade"
fi
if [[ -z $PACKAGES_TO_BE_UPGRADED ]]
then
echo "$(date) [MESSAGE] No packages need updating." >> $LOGFILE
2014-11-20 23:24:10 +10:00
else
echo "
Hello,
Packages have been downloaded onto $THISSERVER.
$PACKAGES_TO_BE_UPGRADED
The server has the following network interfaces configured ${SERVERADDS[@]}.
To update the server log in via ssh (e.g. ssh root@$(hostname -f)) and run the following command:
2014-11-20 23:24:10 +10:00
apt-get upgrade
See the logfile for more info: vim $LOGFILE
Regards. " >/tmp/servermail.msg
sendemail -o tls=auto -s "$O365_SMTP" -xu "$O365_USER" -xp "$O365_PASS" -t "$MAIL" -f "$MAIL" -u "[$THISSERVER] server may need some updates applied" -m "$(cat /tmp/servermail.msg)"
2014-11-20 23:24:10 +10:00
echo "$(date) [MESSAGE] Packages need updating email sent to $MAILTO" >> $LOGFILE
2014-11-20 23:24:10 +10:00
fi
stoplogging
exit 0