also accept Ubuntu 14.04.1 LTS, the point release that people are automatically pushed to

fixes #116
This commit is contained in:
Joshua Tauberer 2014-07-22 21:36:15 +00:00
parent 621fcc2233
commit f50cf10249
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ if [[ $EUID -ne 0 ]]; then
exit
fi
# Check that we are running on Ubuntu 14.04 LTS.
if [ "`lsb_release -d | sed 's/.*:\s*//'`" != "Ubuntu 14.04 LTS" ]; then
# Check that we are running on Ubuntu 14.04 LTS (or 14.04.xx).
if [ "`lsb_release -d | sed 's/.*:\s*//' | sed 's/14\.04\.[0-9]/14.04/' `" != "Ubuntu 14.04 LTS" ]; then
echo "Mail-in-a-Box only supports being installed on Ubuntu 14.04, sorry. You are running:"
echo
lsb_release -d | sed 's/.*:\s*//'