commit | e7335c26a48d9a519e8bc83f30ca8c4c653e98e3 | [log] [tgz] |
---|---|---|
author | Anthony Young <sleepsonthefloor@gmail.com> | Thu Sep 15 20:58:31 2011 -0700 |
committer | Anthony Young <sleepsonthefloor@gmail.com> | Thu Sep 15 20:58:31 2011 -0700 |
tree | 82bb3db0929508a422e88a68fbb66131113ad5fa | |
parent | 036c9f8c50496278440734e02a2c9e4bcb2d19d6 [diff] [blame] |
warn non-natty users
diff --git a/stack.sh b/stack.sh index 86c5cc0..13b750a 100755 --- a/stack.sh +++ b/stack.sh
@@ -22,6 +22,11 @@ # an error. It is also useful for following allowing as the install occurs. set -o xtrace +# Warn users who aren't on natty +if ! grep -q natty /etc/lsb-release; then + echo "WARNING: this script has only been tested on natty" +fi + # Important paths: ``DIR`` is where we are executing from and ``DEST`` is # where we are installing openstack. DIR=`pwd`