diff options
| author | Luke Kanies <luke@madstop.com> | 2007-09-22 17:54:46 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2007-09-22 17:54:46 -0500 |
| commit | 3a18348fdbea39f56857b03c8f531bd5a2a8105d (patch) | |
| tree | f305e24aee683167f45f962e5fcdfe524d59d93e /bin/puppetca | |
| parent | e552c83b2875dab60a5508bfae352e7aa9235746 (diff) | |
Renaming the 'Puppet::Util::Config' class to
'Puppet::Util::Settings'. This is to clear up
confusion caused by the fact that we now have a
'Configuration' class to model host configurations,
or any set of resources as a "configuration".
Diffstat (limited to 'bin/puppetca')
| -rwxr-xr-x | bin/puppetca | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/puppetca b/bin/puppetca index 3dbd87b89..72b2640a3 100755 --- a/bin/puppetca +++ b/bin/puppetca @@ -104,7 +104,7 @@ options = [ ] # Add all of the config parameters as valid options. -Puppet.config.addargs(options) +Puppet.settings.addargs(options) result = GetoptLong.new(*options) @@ -143,7 +143,7 @@ begin when "--verbose" Puppet::Util::Log.level = :info else - Puppet.config.handlearg(opt, arg) + Puppet.settings.handlearg(opt, arg) end } rescue GetoptLong::InvalidOption => detail |
