commit | 6b2f26577b5384b0669ae2e0d082d7fe6a1716e9 | [log] [tgz] |
---|---|---|
author | Joe Gordon <joe.gordon0@gmail.com> | Wed Mar 26 19:19:01 2014 -0700 |
committer | Joe Gordon <joe.gordon0@gmail.com> | Wed Mar 26 19:19:01 2014 -0700 |
tree | 4e6392ca9be6be3f843d4d8dabe0aaa40ae1ef65 | |
parent | 7ee8f11588741357a321adab2fee99b3affe40b3 [diff] |
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
diff --git a/lib/nova b/lib/nova index 8240813..5cc94ec 100644 --- a/lib/nova +++ b/lib/nova
@@ -139,7 +139,7 @@ # 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 }