Browse code

warn users to use natty

Anthony Young authored on 2011/09/14 15:36:43
Showing 1 changed files
... ...
@@ -12,6 +12,11 @@ COPYENV=${COPYENV:-1}
12 12
 # Param string to pass to stack.sh.  Like "EC2_DMZ_HOST=192.168.1.1 MYSQL_USER=nova"
13 13
 STACKSH_PARAMS=${STACKSH_PARAMS:-}
14 14
 
15
+# Warn users who aren't on natty
16
+if ! grep -q natty /etc/lsb-release; then
17
+    echo "WARNING: this script has only been tested on natty"
18
+fi
19
+
15 20
 # Install deps
16 21
 apt-get install lxc debootstrap
17 22