From 6b2f26577b5384b0669ae2e0d082d7fe6a1716e9 Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Wed, 26 Mar 2014 19:19:01 -0700 Subject: [PATCH] Fix is_n-cell-enabled devstack-gate just adds the n-cell to the list of enabled_services and devstack does the rest. Change-Id: I1d7f8d085a5f46078131f0f6f670e929ec63f805 --- lib/nova | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nova b/lib/nova index 824081352e..5cc94ec676 100644 --- a/lib/nova +++ b/lib/nova @@ -139,7 +139,7 @@ function is_nova_enabled { # Test if any Nova Cell services are enabled # is_nova_enabled function is_n-cell_enabled { - [[ ,${ENABLED_SERVICES} =~ ,"n-cell-" ]] && return 0 + [[ ,${ENABLED_SERVICES} =~ ,"n-cell" ]] && return 0 return 1 }