now works with natty

This commit is contained in:
Anthony Young 2011-10-19 20:35:04 -07:00
parent 5086e71fcb
commit 3ee09ec209

View file

@ -1,10 +1,13 @@
#!/usr/bin/env bash
# Make sure that we have the proper version of ubuntu
UBUNTU_VERSION=`cat /etc/lsb-release | grep CODENAME | sed 's/.*=//g'`
if [ ! "oneiric" = "$UBUNTU_VERSION" ]; then
echo "This script only works with oneiric"
if [ ! "natty" = "$UBUNTU_VERSION" ]; then
echo "This script only works with oneiric and natty"
exit 1
fi
fi
# Echo commands
set -o xtrace