summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2013-01-21 16:08:37 +0000
committerMark McLoughlin <markmc@redhat.com>2013-01-21 16:57:32 +0000
commit8d5891e5bc3eab55f4ce8e47ce2bf8d73c96f742 (patch)
tree364b7751fe71a9f35e7f5776bb8c41a9e78fed20 /tools
parentcd4093e0f2a7d07fa81915dc4866f4ac7324a028 (diff)
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
Diffstat (limited to 'tools')
-rw-r--r--tools/conf/extract_opts.py4
-rwxr-xr-xtools/xenserver/vm_vdi_cleaner.py1
2 files changed, 1 insertions, 4 deletions
diff --git a/tools/conf/extract_opts.py b/tools/conf/extract_opts.py
index 3185cb93d..884dcdea6 100644
--- a/tools/conf/extract_opts.py
+++ b/tools/conf/extract_opts.py
@@ -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()
diff --git a/tools/xenserver/vm_vdi_cleaner.py b/tools/xenserver/vm_vdi_cleaner.py
index eeaf978b8..27b89d510 100755
--- a/tools/xenserver/vm_vdi_cleaner.py
+++ b/tools/xenserver/vm_vdi_cleaner.py
@@ -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")