From 6ee8a083f01efa183d4611566ef77d3e530df96a Mon Sep 17 00:00:00 2001 From: Vishvananda Ishaya Date: Tue, 6 Mar 2012 16:08:33 -0800 Subject: Cleans up the create_conf tool * Makes it adhere to the config file format * Puts the sample output in etc/nova/nova.conf.sample * Updating sample is as easy as ./tools/conf/generate_sample.sh Change-Id: I01e72cb58dd598a74f50c2c17f102d24df325f2e --- nova/flags.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'nova') diff --git a/nova/flags.py b/nova/flags.py index 8aaf56659..ed82fca30 100644 --- a/nova/flags.py +++ b/nova/flags.py @@ -44,9 +44,6 @@ class NovaConfigOpts(cfg.CommonConfigOpts): with flagfile.handle_flagfiles_managed(argv[1:]) as args: return argv[:1] + super(NovaConfigOpts, self).__call__(args) - def retrieve_opt(self, opt_name, group=None): - return self._get_opt_info(opt_name, group) - FLAGS = NovaConfigOpts() -- cgit