diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-03-02 17:12:26 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-03-02 17:12:26 +0000 |
commit | 1a93c822667e6990b45f843e56d8976c51517671 (patch) | |
tree | b7764e684b080f27158dfc7430ab30624db15568 /lib/puppet.rb | |
parent | 95856eaaf02361ff597ca2c85e51cf141fe81280 (diff) | |
download | puppet-1a93c822667e6990b45f843e56d8976c51517671.tar.gz puppet-1a93c822667e6990b45f843e56d8976c51517671.tar.xz puppet-1a93c822667e6990b45f843e56d8976c51517671.zip |
Fixing #68. After tons and tons and tons of work, everything successfully configures itself, and the --genmanifest argument should actually work. User and group creation will not necessarily work everywhere (in particular, Puppet uses dependencies to create the group first, but Fedora complains on user creation if the group already exists), but file and directory creation should. The only downside is that there is a decent amount of extra information printed on daemon startup, as the daemon checks its config; this could maybe be seen as a bonus, though, I guess.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@966 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet.rb')
-rw-r--r-- | lib/puppet.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/puppet.rb b/lib/puppet.rb index a3ff166bc..289320776 100644 --- a/lib/puppet.rb +++ b/lib/puppet.rb @@ -124,8 +124,7 @@ module Puppet }, :statefile => { :default => "$statedir/state.yaml", :mode => 0660, - :owner => "$user", - :owner => "$group", + :group => "$group", :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 |