[Puppet Users] Puppet 3.1.1 Windows 7 agent fails to join

2013-03-19 Thread Dragos R
I am pretty new with puppet and I am receiving this error when I try to run Puppet Agent on the Windows 7 host: "Running Puppet agent on demand ... Exiting; no certificate found and waitforcert is disabled Press any key to continue . . ." puppetmaster 3.1.1 on CentOS 6.4 on 192.168.1.250 /etc/pu

[Puppet Users] Re: Puppet 3.1.1 Windows 7 agent fails to join

2013-03-19 Thread Dragos R
. Also, autosigning did not work after I upgraded the agent. Regards, On Mar 19, 10:55 am, Dragos R wrote: > I am pretty new with puppet and I am receiving this error when I try to run > Puppet Agent on the Windows 7 host: > > "Running Puppet agent on demand ... > Exiting; no c

[Puppet Users] OS specific configuration

2013-03-19 Thread Dragos R
Beginner question: I have a very simple configuration in site.pp for all agents. Is it possible to split actions based on operating system. I am interested into running certain commands only on Windows 7, some on Windows Xp and some on Mac OS X agents. Is there a simple way of achieving this wh

Re: [Puppet Users] OS specific configuration

2013-03-19 Thread Dragos R
fact is what you want: > https://puppetlabs.com/blog/facter-part-1-facter-101/ > > > On Tue, Mar 19, 2013 at 5:26 AM, Dragos R >wrote: > >> Beginner question: >> >> I have a very simple configuration in site.pp for all agents. >> >> Is it possible

Re: [Puppet Users] OS specific configuration

2013-03-20 Thread Dragos R
Thanks Peter and Brendan, Indeed Facter is what I needed. I worked the "case" example from here http://docs.puppetlabs.com/learning/variables.html and it seems to be working smooth. Now I understand why it takes so much to run the agent: facter running before fetching catalogs. regards On Tues

[Puppet Users] Cannot use relative URL's

2013-03-21 Thread Dragos R
Hi, I am running into this error: Running Puppet agent on demand ... Info: Retrieving plugin Info: Caching catalog for test-pc Error: Failed to

[Puppet Users] Re: Cannot use relative URL's

2013-03-21 Thread Dragos R
is properly > readable by puppet and use puppet://modules/(modulename)/(filename) in > source. > > On Thursday, March 21, 2013 12:38:32 AM UTC-7, Dragos R wrote: >> >> Hi, >> >> I am running into this error: >> >> Running Puppet

[Puppet Users] Puppet time accuracy

2013-03-21 Thread Dragos R
Hi, I consider Puppet for maintaining regional configuration in 5 offices across 2 timezones. I know Puppet is very time sensitive (the SSL handshake actually). There will be only one puppetmaster in one of the timezones and agents will be Windows workstations and Mac notebooks. My questions a

[Puppet Users] Nested case

2013-03-22 Thread Dragos R
Can I make use of nested cases like this ? case $operatingsystem: { case $kernelmajorversion: { '6.1' : { code } '6.2' : { code } default } } Thanks. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group.

[Puppet Users] Re: Nested case

2013-03-22 Thread Dragos R
Thanks, Its not mentioned and I tried, did not work. No problem, if's are ok too. Dragos On Friday, March 22, 2013 3:35:12 PM UTC+2, llowder wrote: > > > > On Friday, March 22, 2013 8:23:31 AM UTC-5, Dragos R wrote: >> >> Can I make use of nested cases like this