From c47b4299a0cfa17899cbfc0e500d86dbe70775a1 Mon Sep 17 00:00:00 2001 From: Markus Zoeller Date: Mon, 25 Jan 2016 14:31:27 +0100 Subject: Config options: centralize base path configuration This change moves all of the configuration options previously defined in "nova/paths" to the new centralized "nova/conf" directory. A subsequent patch will then improve the help texts. As the helper functions to create specific directories are only used for the default values of other config options, they got moved too. The default value of the config option "pybasedir" gets determined by the directory which contains it. The old directory was "nova/" and new directory is "nova/conf/". That made it necessary to move one additional directory upwards with "../../" to preserve the correct default value. bp centralize-config-options-newton Change-Id: I65fc8d83da660e131e89ce5849e7535e969adcb2 --- nova/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/config.py') diff --git a/nova/config.py b/nova/config.py index bdefd09f3d..ff25628c6e 100644 --- a/nova/config.py +++ b/nova/config.py @@ -21,8 +21,8 @@ from oslo_log import log from nova.common import config import nova.conf +from nova.conf import paths from nova.db.sqlalchemy import api as sqlalchemy_api -from nova import paths from nova import rpc from nova import version -- cgit v1.2.1