Add security-updates-check.sh script (sends mail notifications)

This commit is contained in:
Alice Gaudon 2019-11-01 04:13:47 +01:00
parent f031809f13
commit da243f92d7
1 changed files with 19 additions and 0 deletions

19
security-updates-check.sh Executable file
View File

@ -0,0 +1,19 @@
#!/bin/sh
UPDATES=$(arch-audit --upgradable | sed "{s/\n/<br>/g}")
if test "$1" != "true"
then
UPDATES=$(echo -e "$UPDATES" | grep -v "testing repos\!")
fi
echo -e "$UPDATES"
HOST=$(hostname)
DEST=$(cat ~/.admin_mail)
if [ ! -z "$UPDATES" ]; then
echo -e "The following security updates are available for $HOST:\n\n$UPDATES\n\nIt is highly recommended that you perform these updates now" | mailx -s "Security updates are available on $HOST" $DEST
echo "Mail sent"
fi