diff options
| author | Luke Kanies <luke@madstop.com> | 2007-12-12 16:57:41 -0600 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2007-12-12 16:57:41 -0600 |
| commit | 106f319f6d9f886afff5e1bdbbe083223a4c841c (patch) | |
| tree | db8d90196a14a7cfec4d27a7f0f719d1022c428e /lib | |
| parent | 690e2872864a8a46710445ab07c7d9afa33d0afc (diff) | |
| download | puppet-106f319f6d9f886afff5e1bdbbe083223a4c841c.tar.gz puppet-106f319f6d9f886afff5e1bdbbe083223a4c841c.tar.xz puppet-106f319f6d9f886afff5e1bdbbe083223a4c841c.zip | |
Changing the statefile to only being managed by clients,
not by puppetmasterd.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/puppet/defaults.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb index ff3e70247..26afdb4f9 100644 --- a/lib/puppet/defaults.rb +++ b/lib/puppet/defaults.rb @@ -60,13 +60,6 @@ module Puppet this directory can be removed without causing harm (although it might result in spurious service restarts)." }, - :statefile => { :default => "$statedir/state.yaml", - :mode => 0660, - :desc => "Where puppetd and puppetmasterd store state associated - with the running configuration. In the case of puppetmasterd, - this file reflects the state discovered through interacting - with clients." - }, :ssldir => { :default => "$confdir/ssl", :mode => 0771, @@ -363,6 +356,13 @@ module Puppet :mode => 0660, :desc => "Where puppetd caches the local configuration. An extension indicating the cache format is added automatically."}, + :statefile => { :default => "$statedir/state.yaml", + :mode => 0660, + :desc => "Where puppetd and puppetmasterd store state associated + with the running configuration. In the case of puppetmasterd, + this file reflects the state discovered through interacting + with clients." + }, :classfile => { :default => "$statedir/classes.txt", :owner => "root", :mode => 0644, |
