@@ -32,15 +32,11 @@ REGION_NAME=${REGION_NAME:-RegionOne}
3232# ``disable_service`` functions in ``local.conf``.
3333# For example, to enable Swift add this to ``local.conf``:
3434# 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 ``:
3737# [[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
4440# # Optional, to enable tempest configuration as part of devstack
4541# enable_service tempest
4642function isset {
@@ -54,14 +50,16 @@ function isset {
5450
5551# this allows us to pass ENABLED_SERVICES
5652if ! 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
53+ # core compute (glance / keystone / nova)
54+ ENABLED_SERVICES=g-api,g-reg,key,n-api,n-crt,n-obj,n-cpu,n-cond,n-sch,n-xvnc,n-cauth
5955 # cinder
6056 ENABLED_SERVICES+=,c-sch,c-api,c-vol
6157 # heat
6258 ENABLED_SERVICES+=,h-eng,h-api,h-api-cfn,h-api-cw
6359 # dashboard
6460 ENABLED_SERVICES+=,horizon
61+ # neutron
62+ ENABLED_SERVICES+=,q-svc,q-agt,q-dhcp,q-l3,q-meta
6563 # additional services
6664 ENABLED_SERVICES+=,rabbit,tempest,mysql
6765fi
0 commit comments