Removing double quotes from sample config file

Fixes bug #1005869

Changing create_conf.py to no longer include quotes for
StrOpt, ListOpt and MultiStrOpt types, Also regenerating
and new version of etc/nova/nova.conf.sample

Change-Id: I31c0a6cdcfd3e7cacaae6afbf75648ef0a34d668
This commit is contained in:
Derek Higgins
2012-05-31 11:22:25 +01:00
parent e2e9989d9a
commit 5273d96aa2

View File

@@ -128,7 +128,7 @@ def _print_opt(opt):
print '# %s=<None>' % opt_name
elif opt_type == STROPT:
assert(isinstance(opt_default, basestring))
print '# %s="%s"' % (opt_name, _convert_abspath(opt_default))
print '# %s=%s' % (opt_name, _convert_abspath(opt_default))
elif opt_type == BOOLOPT:
assert(isinstance(opt_default, bool))
print '# %s=%s' % (opt_name, str(opt_default).lower())
@@ -141,11 +141,11 @@ def _print_opt(opt):
print '# %s=%s' % (opt_name, opt_default)
elif opt_type == LISTOPT:
assert(isinstance(opt_default, list))
print '# %s="%s"' % (opt_name, ','.join(opt_default))
print '# %s=%s' % (opt_name, ','.join(opt_default))
elif opt_type == MULTISTROPT:
assert(isinstance(opt_default, list))
for default in opt_default:
print '# %s="%s"' % (opt_name, default)
print '# %s=%s' % (opt_name, default)
except Exception:
sys.stderr.write('Error in option "%s"\n' % opt_name)
sys.exit(1)