Re: [Puppet Users] useradd question

2011-11-04 Thread Andrew Hendry
Hi Peter, This looks like some kind of issue in the ldap provider when its searching for the user. Is the system using ldap? does git user exist in ldap? You might need to log an issue with the trace below. On Tue, Nov 1, 2011 at 8:57 PM, Peter Horvath peter.horvat...@googlemail.com wrote: I

Re: [Puppet Users] useradd question

2011-11-04 Thread Peter Horvath
No, git user is a local user that i am trying to create an define as requirement for other resource types On 4 November 2011 08:32, Andrew Hendry andrew.hen...@gmail.com wrote: Hi Peter, This looks like some kind of issue in the ldap provider when its searching for the user. Is the system

Re: [Puppet Users] useradd question

2011-11-01 Thread Andrew Hendry
Hi Peter, Have you tried --debug --noop, looking for lines like these: debug: /Stage[main]/Git/File[dirrights]/require: requires User[git] notice: /Stage[main]/Git::User/User[git]/ensure: current_value absent, should be present (noop) debug: /Stage[main]/Git::User/User[git]: The container

Re: [Puppet Users] useradd question

2011-11-01 Thread Peter Horvath
I have other classes and require between classes pps working perfectly puppet apply --trace --debug /etc/puppet/site.pp debug: importing '/etc/puppet/modules/apache2/manifests/init.pp' in environment production debug: Automatically imported apache2 from apache2 into production debug: importing

Re: [Puppet Users] useradd question

2011-10-31 Thread Andrew Hendry
Hi Peter, Where do you call git::user and git::ssh from? Maybe the spots where you have require = User['git'], should they be require = Class['Git::User']? Andrew. On Tue, Nov 1, 2011 at 1:21 AM, Peter Horvath peter.horvat...@googlemail.com wrote: I am using Ubuntu LTS 10.04 with the

Re: [Puppet Users] useradd question

2011-10-31 Thread Peter Horvath
I call them here. /etc/puppet/manifests/site.pp #Puppet Node configurationsnode eurwebtest01 {        include apache2       include apache2::mods        include apache2::vhost-eurwebtest} node eurwebtest02 {        include apache2        include apache2::mods        include