warn non-natty users
This commit is contained in:
parent
036c9f8c50
commit
e7335c26a4
1 changed files with 5 additions and 0 deletions
5
stack.sh
5
stack.sh
|
@ -22,6 +22,11 @@ set -o errexit
|
|||
# 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`
|
||||
|
|
Loading…
Reference in a new issue