Browse code

Remove nova cert from devstack

As a followup to I2c78a0c6599b92040146cf9f0042cff8fd2509c3, the nova
cert service should be removed from devstack.

Without this fix, stacking will fail is USE_SCREEN=True

Change-Id: I115580352fa380b896bae290f9a4efbfe4ff0dfd

Nir Magnezi authored on 2017/05/22 18:40:57
Showing 2 changed files
... ...
@@ -45,7 +45,7 @@ Edit your ``local.conf`` to look like
45 45
     # Horizon
46 46
     ENABLED_SERVICES+=,horizon
47 47
     # Nova
48
-    ENABLED_SERVICES+=,n-api,n-crt,n-cpu,n-cond,n-sch
48
+    ENABLED_SERVICES+=,n-api,n-cpu,n-cond,n-sch
49 49
     # Glance
50 50
     ENABLED_SERVICES+=,g-api,g-reg
51 51
     # Neutron
... ...
@@ -878,7 +878,6 @@ function start_nova_rest {
878 878
     run_process n-cond "$NOVA_BIN_DIR/nova-conductor --config-file $compute_cell_conf"
879 879
     run_process n-cell-region "$NOVA_BIN_DIR/nova-cells --config-file $api_cell_conf"
880 880
     run_process n-cell-child "$NOVA_BIN_DIR/nova-cells --config-file $compute_cell_conf"
881
-    run_process n-crt "$NOVA_BIN_DIR/nova-cert --config-file $api_cell_conf"
882 881
 
883 882
     if is_service_enabled n-net; then
884 883
         if ! running_in_container; then
... ...
@@ -929,7 +928,7 @@ function stop_nova_rest {
929 929
     # Kill the nova screen windows
930 930
     # Some services are listed here twice since more than one instance
931 931
     # of a service may be running in certain configs.
932
-    for serv in n-api n-crt n-net n-sch n-novnc n-xvnc n-cauth n-spice n-cond n-cell n-cell n-api-meta n-sproxy; do
932
+    for serv in n-api n-net n-sch n-novnc n-xvnc n-cauth n-spice n-cond n-cell n-cell n-api-meta n-sproxy; do
933 933
         stop_process $serv
934 934
     done
935 935
 }