[Puppet Users] actual diff of changed files via email

2011-11-23 Thread Andreas Paul
Hi there, I currently get my puppet run reports via email, can I somehow get the actual diff of the changed files in those emails? I'd like to get the exact same output as if I'm running puppetd -t on the client. Is that possible? Best regards, Andreas Paul -- You received this message beca

[Puppet Users] Re: Issue with RPM dependency issue

2011-11-23 Thread jcbollinger
On Nov 22, 8:43 am, TisMe wrote: > I am running into an issue with perl-DBD-MySQL dependency with mysql > in CentOS 5.7. > > I am trying to remove the mysql client and replace it with with > percona version of the mysql client. > > It will not let me remove the mysql client because of that > dep

Re: [Puppet Users] Re: Issue with RPM dependency issue

2011-11-23 Thread Eric Shamow
I've run into this before. The trick is to ensure that the Percona client is available and installed first and let *it* pull in perl-DBD-MySQL. If you install perl-DBD-MySQL first, it will often attempt to directly grab the RPM that best meets its requirements, which is the standard MySQL pack

[Puppet Users] catalog compilation caching

2011-11-23 Thread Antony Mayi
Hello, just trying to understand the workload behind the compilation of catalogs puppet master is doing each time the client does a request to the master. I understand the clients send the facts to the master and the master based on the facts and the manifests compiles the catalog. I would expe

Re: [Puppet Users] catalog compilation caching

2011-11-23 Thread Brice Figureau
On 23/11/11 19:27, Antony Mayi wrote: > Hello, > > just trying to understand the workload behind the compilation of > catalogs puppet master is doing each time the client does a request to > the master. I understand the clients send the facts to the master and > the master based on the facts and t

[Puppet Users] Re: declare and include classes

2011-11-23 Thread Arnau
Thanks Nan. Cheers, Arnau -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com. For more opt

[Puppet Users] Puppet 2.7.7: Thunderdome

2011-11-23 Thread Michael Stahnke
Per our timed-release cycle process[1], we've entered the THUNDERDOME for 2.7.7rc series (Nov) vs 2.7.8 series (Dec). Two releases enter; one leaves. It was determined today that 2.7.8 has won the Thunderdome. (It was a gory battle where 2.7.8 kicked 2.7.7 in the face, 2.7.7 fought back with a w

[Puppet Users] is_virtual fact

2011-11-23 Thread Matt Zagrabelny
Hi, I've got a question regarding a fact. I'm trying to use the 'is_virtual' fact in a class manifest: class io_scheduler { if $is_virtual { file { "/etc/default/grub": owner => "root", group => "root", mode=> 0644, source => "puppet:///modules/io_scheduler/

Re: [Puppet Users] is_virtual fact

2011-11-23 Thread Jacob Helwig
On 2011-11-23 12:49 , Matt Zagrabelny wrote: > Hi, > > I've got a question regarding a fact. I'm trying to use the > 'is_virtual' fact in a class manifest: > > class io_scheduler { > if $is_virtual { > file { "/etc/default/grub": > owner => "root", > group => "root", >

[Puppet Users] Puppet Windows: scheduled_task : TypeError

2011-11-23 Thread Mohamed Lrhazi
am trying this: scheduled_task { 'Puppet Run': ensure=> present, enabled => true, command => 'C:\\ruby187\\bin\\puppet.bat', arguments => 'agent --verbose --logdest C:\\Temp\puppet.log', trigger => { schedule => daily,

Re: [Puppet Users] is_virtual fact

2011-11-23 Thread Matt Zagrabelny
> Facter facts are all strings, not true booleans.  You'll need to check > for whether or not $is_virtual == 'true'. Thanks for the prompt reply, Jacob! Things look good now. -mz -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this

Re: [Puppet Users] Puppet Windows: scheduled_task : TypeError

2011-11-23 Thread Jacob Helwig
On 2011-11-23 13:02 , Mohamed Lrhazi wrote: > am trying this: > > scheduled_task { 'Puppet Run': > ensure=> present, > enabled => true, > command => 'C:\\ruby187\\bin\\puppet.bat', > arguments => 'agent --verbose --logdest C:\\Temp\puppet.log', >

Re: [Puppet Users] Puppet Windows: scheduled_task : TypeError

2011-11-23 Thread Mohamed Lrhazi
Thanks JacobDid that answer my TypeError as well? Mohamed. On Wed, Nov 23, 2011 at 5:28 PM, Jacob Helwig wrote: > On 2011-11-23 13:02 , Mohamed Lrhazi wrote: >> am trying this: >> >>     scheduled_task { 'Puppet Run': >>         ensure    => present, >>         enabled   => true, >>        

Re: [Puppet Users] Puppet Windows: scheduled_task : TypeError

2011-11-23 Thread Jacob Helwig
On 2011-11-23 15:53 , Mohamed Lrhazi wrote: > Thanks JacobDid that answer my TypeError as well? No, a stack trace would help for that. -- Jacob Helwig http://about.me/jhelwig > > Mohamed. > > On Wed, Nov 23, 2011 at 5:28 PM, Jacob Helwig wrote: >> On 2011-11-23 13:02 , Mohamed Lrhazi wr

Re: [Puppet Users] Re: Multiple nodes.pp files

2011-11-23 Thread Iain Sutton
Aside: do you perhaps mean source => file("/home/$::realuser/puppet/files/smb.conf"), instead of content => file("/home/$::realuser/puppet/files/smb.conf"), ? Do you have any lines like: notice("the value of realuser is ${realuser} and ::realuser is ${::realuser} ") in your manifest to confi