diff options
author | Mark McLoughlin <markmc@redhat.com> | 2013-01-08 09:48:03 +0000 |
---|---|---|
committer | Mark McLoughlin <markmc@redhat.com> | 2013-01-09 22:09:17 +0000 |
commit | 7cb17d63f1bd317abc5cacd6d77e7ca810ccc346 (patch) | |
tree | 9c633aafbfe7446be208737232f627c0922d25e4 /nova/service.py | |
parent | 562b5a452db7208b53022aba0e8b6a8f70150587 (diff) | |
download | nova-7cb17d63f1bd317abc5cacd6d77e7ca810ccc346.tar.gz nova-7cb17d63f1bd317abc5cacd6d77e7ca810ccc346.tar.xz nova-7cb17d63f1bd317abc5cacd6d77e7ca810ccc346.zip |
Move global service networking opts to new module
The my_ip, host and use_ipv6 options are used all over the codebase
and they're pretty well related to each other. Create a new netconf
module for them to live in.
There are now no options registered globally in nova.config!
blueprint: scope-config-opts
Change-Id: Ifde37839ae6f38e6bf99dff1e80b8e25fd68ed25
Diffstat (limited to 'nova/service.py')
-rw-r--r-- | nova/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/service.py b/nova/service.py index 4418b0840..7191da4a8 100644 --- a/nova/service.py +++ b/nova/service.py @@ -112,7 +112,7 @@ service_opts = [ CONF = cfg.CONF CONF.register_opts(service_opts) -CONF.import_opt('host', 'nova.config') +CONF.import_opt('host', 'nova.netconf') class SignalExit(SystemExit): |