We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 036c9f8 commit e7335c2Copy full SHA for e7335c2
1 file changed
stack.sh
@@ -22,6 +22,11 @@ set -o errexit
22
# an error. It is also useful for following allowing as the install occurs.
23
set -o xtrace
24
25
+# Warn users who aren't on natty
26
+if ! grep -q natty /etc/lsb-release; then
27
+ echo "WARNING: this script has only been tested on natty"
28
+fi
29
+
30
# Important paths: ``DIR`` is where we are executing from and ``DEST`` is
31
# where we are installing openstack.
32
DIR=`pwd`
0 commit comments