We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 190321e commit 936c928Copy full SHA for 936c928
1 file changed
build_lxc.sh
@@ -12,6 +12,11 @@ COPYENV=${COPYENV:-1}
12
# Param string to pass to stack.sh. Like "EC2_DMZ_HOST=192.168.1.1 MYSQL_USER=nova"
13
STACKSH_PARAMS=${STACKSH_PARAMS:-}
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
+
20
# Install deps
21
apt-get install lxc debootstrap
22
0 commit comments