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,9 +1,12 @@
#!/usr/bin/env bash #!/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'` UBUNTU_VERSION=`cat /etc/lsb-release | grep CODENAME | sed 's/.*=//g'`
if [ ! "oneiric" = "$UBUNTU_VERSION" ]; then if [ ! "oneiric" = "$UBUNTU_VERSION" ]; then
echo "This script only works with oneiric" if [ ! "natty" = "$UBUNTU_VERSION" ]; then
exit 1 echo "This script only works with oneiric and natty"
exit 1
fi
fi fi
# Echo commands # Echo commands