diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-02-07 17:07:15 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-02-07 17:07:15 +0000 |
| commit | f1ffc34c0927840beeb21e1e2d864ce14de5d15e (patch) | |
| tree | b68a8795301d04393e56e540bb61ba73791a47d2 /lib/puppet/client | |
| parent | 6affe220db1248cee8489347dc7d7ac071a534e4 (diff) | |
Configuration parameters now require (and have) descriptions, and a set of configuration parameters can be converted to a configuration file, a manifest, or a component. All I have to do now is integrate them into the executables.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@872 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/client')
| -rw-r--r-- | lib/puppet/client/master.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/client/master.rb b/lib/puppet/client/master.rb index 29e466224..9ea24d502 100644 --- a/lib/puppet/client/master.rb +++ b/lib/puppet/client/master.rb @@ -85,9 +85,9 @@ class Puppet::Client::MasterClient < Puppet::Client Puppet::Storage.init Puppet::Storage.load rescue => detail - Puppet.err "Corrupt state file %s: %s" % [Puppet[:checksumfile], detail] + Puppet.err "Corrupt state file %s: %s" % [Puppet[:statefile], detail] begin - File.unlink(Puppet[:checksumfile]) + File.unlink(Puppet[:statefile]) retry rescue => detail raise Puppet::Error.new("Cannot remove %s: %s" % |
