[Puppet Users] Re: Puppet Dashboard believes a node is unresponsive

2014-03-03 Thread Robert Rothenberg
Could this be due to this bug? http://projects.puppetlabs.com/issues/8603 On Monday, March 3, 2014 4:04:56 PM UTC, Robert Rothenberg wrote: > > Puppet Dashboard is listing a node as unresponsive for several days. But > the agent has been running twice an hour with no errors, and a m

[Puppet Users] Puppet Dashboard believes a node is unresponsive

2014-03-03 Thread Robert Rothenberg
Puppet Dashboard is listing a node as unresponsive for several days. But the agent has been running twice an hour with no errors, and a manual run of the agent shows it runs fine. I cannot ping it with mcollective, and a query for disabled agents doesn't list it. I looked in the logs on the no

[Puppet Users] Re: Puppet v2.7.209 setting permissions recursively

2012-12-18 Thread Robert Rothenberg
On Tuesday, December 18, 2012 4:28:14 PM UTC, Robert Rothenberg wrote: > > How can I get Puppet to recursively set permissions of a directory, so > that the directory and all subdirectories have move 0755 but the files in > the directory have mode 0644? When I use the recurse =&

[Puppet Users] Puppet v2.7.209 setting permissions recursively

2012-12-18 Thread Robert Rothenberg
How can I get Puppet to recursively set permissions of a directory, so that the directory and all subdirectories have move 0755 but the files in the directory have mode 0644? When I use the recurse => true option, it sets the files in the directory to executable as well. -- You received this

[Puppet Users] Re: Puppet 2.7 v 3.0 in the PuppetLabs yum repo

2012-10-03 Thread Robert Rothenberg
BTW, I have reported this at https://projects.puppetlabs.com/issues/16729 -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/0mmf1DmfyDIJ. To post to this grou

Re: [Puppet Users] Puppet 2.7 v 3.0 in the PuppetLabs yum repo

2012-10-03 Thread Robert Rothenberg
nfortunately, Cobbler's package exclusion doesn't work either. > - Chad > > On Wed, Oct 3, 2012 at 9:16 AM, jcbollinger > > > wrote: > > > > > > On Tuesday, October 2, 2012 7:36:22 PM UTC-5, Michael Stanhke wrote: > >> > >> O

Re: [Puppet Users] Puppet 2.7 v 3.0 in the PuppetLabs yum repo

2012-10-03 Thread Robert Rothenberg
On Wednesday, October 3, 2012 1:36:22 AM UTC+1, Michael Stanhke wrote: > > On Tue, Oct 2, 2012 at 1:30 PM, Jeff McCune > > > wrote: > > On Tue, Oct 2, 2012 at 1:17 PM, Robert Rothenberg > > > > wrote: > >> I am using CentOS 6 wi

[Puppet Users] Puppet 2.7 v 3.0 in the PuppetLabs yum repo

2012-10-02 Thread Robert Rothenberg
I am using CentOS 6 with the PuppetLabs yum repo from http://yum.puppetlabs.com I noticed that today version 3 is available on the repo, so of course, an upgrade to Puppet is available. Ideally, it would have been better if v3 had a different distribution name, so that systems with v2.7.x are

[Puppet Users] Re: Virtual resources for a list of server ip addresses in Apache config

2012-04-18 Thread Robert Rothenberg
08 PM UTC+1, Robert Rothenberg wrote: > > I have an internal web site that can only be accessed from other servers. > > It seems to me that I should pass an array of the addresses to the class > that instantiates the template for the Apache configuration. That seems > easy. >

[Puppet Users] Virtual resources for a list of server ip addresses in Apache config

2012-04-18 Thread Robert Rothenberg
I have an internal web site that can only be accessed from other servers. It seems to me that I should pass an array of the addresses to the class that instantiates the template for the Apache configuration. That seems easy. The hard part is getting every node to "register" itself so that it's

Re: [Puppet Users] Is paramater ordering non-deterministic?

2012-04-16 Thread Robert Rothenberg
s as in your example). > > You need to move the logic computing the resulting defaults inside the > class to be able to use the $owner and $prefix values. > > Regards > - henrik > > On 2012-16-04 12:39, Robert Rothenberg wrote: > > I've run into the following iss

[Puppet Users] Is paramater ordering non-deterministic?

2012-04-16 Thread Robert Rothenberg
I've run into the following issue with parameters that are dependent on each other. Suppose I have the following class: class foo( $owner, $prefix = "/opt/${owner}", $etc_dir = "${prefix}/etc" ) { file{"${etc_dir}": ensure => directory, owner => $owner, group