From 73af846ca064f214828c9833ab83561be53a1be4 Mon Sep 17 00:00:00 2001 From: Thiago Paiva Date: Tue, 14 Apr 2015 16:57:22 -0300 Subject: [PATCH] Fixing n-crt removal from stackrc The commit 279cfe75198c723519f1fb361b2bff3c641c6cef removed the n-crt service from the default devstack setup. As such, the stack.sh script begun to thrown the following error when trying to "nova x509-create-cert": ERROR (ClientException): The server has either erred or is incapable of performing the requested operation. (HTTP 500) This patches reintroduces the n-crt as a default service. Change-Id: Id9695a37e1c6df567f2c86baa4475225adcfb0ee Closes-bug: #1441007 --- stackrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stackrc b/stackrc index abedb001d1..0b93d32358 100644 --- a/stackrc +++ b/stackrc @@ -49,7 +49,7 @@ if ! isset ENABLED_SERVICES ; then # Keystone - nothing works without keystone ENABLED_SERVICES=key # Nova - services to support libvirt based openstack clouds - ENABLED_SERVICES+=,n-api,n-cpu,n-net,n-cond,n-sch,n-novnc + ENABLED_SERVICES+=,n-api,n-cpu,n-net,n-cond,n-sch,n-novnc,n-crt # Glance services needed for Nova ENABLED_SERVICES+=,g-api,g-reg # Cinder