From fc6551118f3388064c2e618ee323091a3c26d681 Mon Sep 17 00:00:00 2001 From: EdLeafe Date: Thu, 14 Jan 2016 19:24:16 +0000 Subject: [PATCH] Move config options from nova/cert directory This patch moves the config options in the files in the nova/cert directory into nova/conf/cert.py. Improved help text will follow in a dependent patch. Blueprint centralize-config-options Change-Id: Ib89ed26bed85238193bfaa36f0549abaa7d9426c --- nova/conf/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nova/conf/__init__.py b/nova/conf/__init__.py index c9b8a7cd8..c4c997e19 100644 --- a/nova/conf/__init__.py +++ b/nova/conf/__init__.py @@ -26,6 +26,7 @@ from oslo_config import cfg # from nova.conf import barbican # from nova.conf import base # from nova.conf import cells +from nova.conf import cert # from nova.conf import cinder # from nova.conf import cloudpipe from nova.conf import compute @@ -84,6 +85,7 @@ CONF = cfg.CONF # barbican.register_opts(CONF) # base.register_opts(CONF) # cells.register_opts(CONF) +cert.register_opts(CONF) # cinder.register_opts(CONF) # cloudpipe.register_opts(CONF) compute.register_opts(CONF)