From 30f68e9658f5b451af86c0c0979c134620e11d19 Mon Sep 17 00:00:00 2001 From: Jesse Andrews Date: Tue, 13 Sep 2011 00:59:54 -0700 Subject: [PATCH] start to use RST thanks to termie's port --- stack.sh | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/stack.sh b/stack.sh index f537f9e..6f6ef27 100755 --- a/stack.sh +++ b/stack.sh @@ -4,12 +4,17 @@ # FIXME: commands should be: stack.sh should allow specifying a subset of services +# Settings/Options +# ---------------- + # Quit script on error set -o errexit # Log commands as they are run for debugging set -o xtrace +# Important paths: `DIR` is where we are executing from and `DEST` is where we +# are installing openstack. DIR=`pwd` DEST=/opt @@ -33,6 +38,7 @@ FLOATING_RANGE=${FLOATING_RANGE:-10.6.0.0/27} FIXED_RANGE=${FIXED_RANGE:-10.0.0.0/24} LIBVIRT_TYPE=${LIBVIRT_TYPE:-qemu} NET_MAN=${NET_MAN:-VlanManager} + # NOTE(vish): If you are using FlatDHCP on multiple hosts, set the interface # below but make sure that the interface doesn't already have an # ip or you risk breaking things. @@ -43,6 +49,11 @@ MYSQL_PASS=${MYSQL_PASS:-nova} SQL_CONN=${SQL_CONN:-mysql://root:$MYSQL_PASS@localhost/nova} # TODO: set rabbitmq conn string explicitly as well +# Install Packages +# ---------------- +# +# Openstack uses a fair number of other projects. + # seed configuration with mysql password cat <