From e779a2afe559d67bef12bb57f1a4ce0de06b9c81 Mon Sep 17 00:00:00 2001 From: F3RR3T Date: Sat, 6 Sep 2014 22:04:16 +1000 Subject: Monitor now ckecks for IP change and invokes email notification --- notifynewip.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 notifynewip.sh (limited to 'notifynewip.sh') diff --git a/notifynewip.sh b/notifynewip.sh new file mode 100755 index 0000000..5542d86 --- /dev/null +++ b/notifynewip.sh @@ -0,0 +1,30 @@ +#! /bin/bash - + +# SJP 6 Sept 2014 +# send an email telling me that the IP address has changed +# called from monitor.sh + +cd ~/mail/monitor + +cat <<- EOF > emailbody.txt + Notification of changed IP address + ================================== + + The IP address of cumquat has changed. + + Old IP and date of recording: +EOF + +cat data/tmp.* >> emailbody.txt + +cat <<- EOF >> emailbody.txt + New IP: $ip + Date : $dt + +EOF + +uptime >> emailbody.txt + +cat emailbody.txt | mail -A cumquat -s "IP has changed" st33v@st33v.com + + -- cgit v1.3