On Mar 19, 2009, at 6:05 PM, Trevor Hemsley wrote:
>
>
>
> Luke Kanies wrote:
>> You should be able to do this with something like:
>>
>> # puppet.conf
>> configfile = /etc/puppet/puppet.conf{owner = root, group = ...}
>>
>> I'm typing from not-very-good memory here; I don't remember if that's
>>
Luke Kanies wrote:
> You should be able to do this with something like:
>
> # puppet.conf
> configfile = /etc/puppet/puppet.conf{owner = root, group = ...}
>
> I'm typing from not-very-good memory here; I don't remember if that's
> the right param, or if you need '=' or '=>' here. The
> Con
On Mar 19, 2009, at 4:56 PM, Trevor Hemsley wrote:
>
> I tried it because I wanted to change the perms on
> /etc/puppet/puppet.conf to 600.
>
> class puppetperms
>{
>file {"/etc/puppet/puppet.conf":
>owner => root,
>group => root,
>m
I tried it because I wanted to change the perms on
/etc/puppet/puppet.conf to 600.
class puppetperms
{
file {"/etc/puppet/puppet.conf":
owner => root,
group => root,
mode => 600
}
}
I ran puppetd --test --tag
Can you reproduce?
Were you running puppetmasterd with --debug --trace?
On Thu, Mar 19, 2009 at 6:01 AM, Trevor Vaughan wrote:
>
> So, for whatever insane reason, I tried to have Puppet set the
> permissions on some files in /etc/puppet such as autosign.conf and
> fileserver.conf.
>
> I had pu