devstack-gate just adds the n-cell to the list of enabled_services and
devstack does the rest.
Change-Id: I1d7f8d085a5f46078131f0f6f670e929ec63f805
| ... | ... |
@@ -139,7 +139,7 @@ function is_nova_enabled {
|
| 139 | 139 |
# Test if any Nova Cell services are enabled |
| 140 | 140 |
# is_nova_enabled |
| 141 | 141 |
function is_n-cell_enabled {
|
| 142 |
- [[ ,${ENABLED_SERVICES} =~ ,"n-cell-" ]] && return 0
|
|
| 142 |
+ [[ ,${ENABLED_SERVICES} =~ ,"n-cell" ]] && return 0
|
|
| 143 | 143 |
return 1 |
| 144 | 144 |
} |
| 145 | 145 |
|