Sync latest cfg from oslo-incubator

The main change is:

  c5984ba Move logging config options into the log module

Re-generate nova.conf.sample to reflect the options move.

Change-Id: I3913ea54465658d93dc56e014dfe5d911b0541d6
This commit is contained in:
Mark McLoughlin
2013-01-21 16:08:37 +00:00
parent cd4093e0f2
commit 8d5891e5bc
8 changed files with 162 additions and 152 deletions
-4
View File
@@ -63,10 +63,6 @@ def main(srcfiles):
# The options list is a list of (module, options) tuples
opts_by_group = {'DEFAULT': []}
opts_by_group['DEFAULT'].append(
(cfg.__name__ + ':' + cfg.CommonConfigOpts.__name__,
_list_opts(cfg.CommonConfigOpts)[0][1]))
for pkg_name in pkg_names:
mods = mods_by_pkg.get(pkg_name)
mods.sort()
+1
View File
@@ -42,6 +42,7 @@ cleaner_opts = [
]
CONF = cfg.CONF
CONF.register_opts(cleaner_opts)
CONF.import_opt('verbose', 'nova.openstack.common.log')
CONF.import_opt("resize_confirm_window", "nova.compute.manager")