Move ENABLED_SERVICES to stackrc.
allow us to do things like that :
ENABLED_SERVICES="$ENABLED_SERVICES,swift"
in localrc instead of having to copy the full config from stack.sh.
Fixes bug 951598.
Change-Id: I17e168473540760bcfa40a752ff2c266bd9b7044
diff --git a/stackrc b/stackrc
index 8df3b83..d0fa1c2 100644
--- a/stackrc
+++ b/stackrc
@@ -1,6 +1,14 @@
# Find the other rc files
RC_DIR=$(cd $(dirname "$BASH_SOURCE") && pwd)
+# Specify which services to launch. These generally correspond to
+# screen tabs. If you like to add other services that are not enabled
+# by default you can append them in your ENABLED_SERVICES variable in
+# your localrc. For example for swift you can just add this in your
+# localrc to add it with the other services:
+# ENABLED_SERVICES="$ENABLED_SERVICES,swift"
+ENABLED_SERVICES=g-api,g-reg,key,n-api,n-crt,n-obj,n-cpu,n-net,n-vol,n-sch,n-novnc,n-xvnc,n-cauth,horizon,mysql,rabbit
+
# compute service
NOVA_REPO=https://github.com/openstack/nova.git
NOVA_BRANCH=master