Browse code

Merge "Make neutron the default in devstack"

Jenkins authored on 2015/02/03 05:09:54
Showing 1 changed files
... ...
@@ -32,15 +32,11 @@ REGION_NAME=${REGION_NAME:-RegionOne}
32 32
 # ``disable_service`` functions in ``local.conf``.
33 33
 # For example, to enable Swift add this to ``local.conf``:
34 34
 #  enable_service s-proxy s-object s-container s-account
35
-# In order to enable Neutron (a single node setup) add the following
36
-# settings in ``local.conf``:
35
+# In order to enable nova-networking add the following settings in
36
+# `` local.conf ``:
37 37
 #  [[local|localrc]]
38
-#  disable_service n-net
39
-#  enable_service q-svc
40
-#  enable_service q-agt
41
-#  enable_service q-dhcp
42
-#  enable_service q-l3
43
-#  enable_service q-meta
38
+#  disable_service q-svc q-agt q-dhcp q-l3 q-meta
39
+#  enable_service n-net
44 40
 #  # Optional, to enable tempest configuration as part of devstack
45 41
 #  enable_service tempest
46 42
 function isset {
... ...
@@ -54,14 +50,16 @@ function isset {
54 54
 
55 55
 # this allows us to pass ENABLED_SERVICES
56 56
 if ! isset ENABLED_SERVICES ; then
57
-    # core compute (glance / keystone / nova (+ nova-network))
58
-    ENABLED_SERVICES=g-api,g-reg,key,n-api,n-crt,n-obj,n-cpu,n-net,n-cond,n-sch,n-xvnc,n-cauth
57
+    # core compute (glance / keystone / nova)
58
+    ENABLED_SERVICES=g-api,g-reg,key,n-api,n-crt,n-obj,n-cpu,n-cond,n-sch,n-xvnc,n-cauth
59 59
     # cinder
60 60
     ENABLED_SERVICES+=,c-sch,c-api,c-vol
61 61
     # heat
62 62
     ENABLED_SERVICES+=,h-eng,h-api,h-api-cfn,h-api-cw
63 63
     # dashboard
64 64
     ENABLED_SERVICES+=,horizon
65
+    # neutron
66
+    ENABLED_SERVICES+=,q-svc,q-agt,q-dhcp,q-l3,q-meta
65 67
     # additional services
66 68
     ENABLED_SERVICES+=,rabbit,tempest,mysql
67 69
 fi