On Wed, Jan 27, 2010 at 11:06 AM, Peter Meier <peter.me...@immerda.ch>wrote:

>  Node and class:
>>
>> node default { include solaris }
>> class solaris {
>>        file { "/etc":
>>                source => "puppet:///files-solaris/etc",
>>                recurse => true,
>>                ensure => directory,
>>        }
>> }
>> Solaris 10 puppet master trace:
>>
>> notice: Starting Puppet server version 0.25.2
>>
>
> could it be that somewhere in /etc there is a broken symlink? Note: as you
> are recursively managing /etc as far as I remember every file in /etc is
> checked (hint: another reason why this approach doesn't scale)...
>
> This smeels like #3001 [1] maybe you could test with 0.25.4rc3?
>
> cheers pete
>
> [1] http://projects.reductivelabs.com/issues/3001


The following test worked and may have proved your theory.  Thank you very
much for the help.

node default { include solaris }
class solaris {
        file { "/etc/inet":
                source => "puppet:///files-solaris/etc/inet",
                recurse => true,
        }
}

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to