david/scripts-archive
david
/
scripts-archive
Archived
1
0
Fork 0
This repository has been archived on 2022-04-16. You can view files and clone it, but cannot push or open issues or pull requests.
scripts-archive/monitoring/check_for_ubuntu_release.sh

14 lines
288 B
Bash

#!/bin/bash
curl --silent http://torrent.ubuntu.com/simple/precise/server/ | grep beta2 >> /dev/null
if [ $? -eq 1 ]; then
#send mail
/home/david/SparkleShare/docs/scripts/telnet_mail.sh "Ubuntu 12.04 Precise Pangolin LTS is out."
else
echo "still beta2 online"
fi
exit 0