summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-01-23 12:52:11 +0000
committerGerrit Code Review <review@openstack.org>2013-01-23 12:52:12 +0000
commitbb108c6bd359e788e0f4cfc53f5933d134fc7cc4 (patch)
tree15c0bf4c881827f76363ed6bd738c232c1aa11d5 /tools
parent66ee2ae49f3db77bc5492f3c8a2a49546af167c2 (diff)
parent8d5891e5bc3eab55f4ce8e47ce2bf8d73c96f742 (diff)
Merge "Sync latest cfg from oslo-incubator"
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 ccfcf3e4f..4dde53335 100644
--- a/tools/conf/extract_opts.py
+++ b/tools/conf/extract_opts.py
@@ -74,10 +74,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")