Browse code

more docs update

Jesse Andrews authored on 2011/09/16 14:54:52
Showing 1 changed files
... ...
@@ -2,7 +2,7 @@
2 2
 
3 3
 # **stack.sh** is rackspace cloudbuilder's opinionated openstack dev installation.
4 4
 
5
-# To keep this script simple we assume you are running on an **Ubuntu 11.04 i
5
+# To keep this script simple we assume you are running on an **Ubuntu 11.04
6 6
 # Natty** machine.  It should work in a VM or physical server.  Additionally we
7 7
 # put the list of *apt* and *pip* dependencies and other configuration files in
8 8
 # this repo.  So start by grabbing this script and the dependencies.
... ...
@@ -11,9 +11,8 @@
11 11
 # Sanity Check
12 12
 # ============
13 13
 
14
-# Warn users who aren't on natty, but allow they to override check and attempt
14
+# Warn users who aren't on natty, but allow them to override check and attempt
15 15
 # installation with ``FORCE=yes ./stack``
16
-#
17 16
 if ! grep -q natty /etc/lsb-release; then
18 17
     echo "WARNING: this script has only been tested on natty"
19 18
     if [[ "$FORCE" != "yes" ]]; then
... ...
@@ -25,7 +24,7 @@ fi
25 25
 # stack.sh keeps the list of **apt** and **pip** dependencies in files.  
26 26
 # Additionally we have a few config templates and other useful files useful 
27 27
 # installation.  They are needed to be located at ``apts``, ``files`` and 
28
-# ``pips`` in the same directory as this script.
28
+# ``pips`` in the ``DEVSTACK`` directory (next to this script).
29 29
 DEVSTACK=`pwd`
30 30
 if [ ! -d $DEVSTACK/apts ] || [ ! -d $DEVSTACK/files ] || [ ! -d $DEVSTACK/pips ]; then
31 31
     echo "ERROR: missing devstack files - did you grab more than just stack.sh?"