Browse code

Merge "Fix is_neutron_legacy_enabled function"

Zuul authored on 2019/05/05 07:38:45
Showing 1 changed files
... ...
@@ -117,7 +117,9 @@ function is_neutron_enabled {
117 117
 # Test if any Neutron services are enabled
118 118
 # is_neutron_enabled
119 119
 function is_neutron_legacy_enabled {
120
-    [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
120
+    # first we need to remove all "neutron-" from DISABLED_SERVICES list
121
+    disabled_services_copy=$(echo $DISABLED_SERVICES | sed 's/neutron-//g')
122
+    [[ ,${disabled_services_copy} =~ ,"neutron" ]] && return 1
121 123
     [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
122 124
     return 1
123 125
 }