Re: [Puppet Users] Can't get puppet/passenger to stop using /home/puppet/.puppet

2014-04-11 Thread John Pyeatt
Yes. puppet has those permissions. I even tried doing chown -R puppet:puppet /etc/puppet and chown -R puppet:puppet /usr/share/puppet On Thu, Apr 10, 2014 at 5:30 PM, Spencer Krum krum.spen...@gmail.comwrote: Does the puppet user have read/execute on all files/dirs under /etc/puppet? Is

[Puppet Users] Re: New Puppet Master install not creating packages when adding Class

2014-04-11 Thread jcbollinger
On Thursday, April 10, 2014 6:50:55 PM UTC-5, aspo73 wrote: Hi John. It does look as though I've set up the master to manage itself OK, as I'm seeing my host listed here: http://snag.gy/sWpfy.jpg Is this what I should expect? I also include the class showing as added here:

Re: [Puppet Users] Can't get puppet/passenger to stop using /home/puppet/.puppet

2014-04-11 Thread John Pyeatt
Added info. When I look in /var/log/syslog I see the line puppet-master[26751]: Using settings: adding file resource '*confdir*': 'File[/home/puppet/.puppet]{:ensure=:directory, :loglevel=:debug, :links=:follow, :backup=false, :path=/home/puppet/.puppet}' My config.ru file contains the line

[Puppet Users] Strange Messages from Puppetmaster

2014-04-11 Thread Sandro von Matterhorn
Hi everyone, we're getting strange messages from our Puppetmaster, without knowing, what they mean: puppetmaster : 1: puppet-master: DEPRECATION NOTICE: Files found in modules without specifying 'modules' in file path will be deprecated in the next major release. Please fix module

Re: [Puppet Users] Strange Messages from Puppetmaster

2014-04-11 Thread José Luis Ledesma
For example this source = puppet:///ntp/ntpd.conf, Should be source = puppet:///modules/ntp/ntpd.conf, Regards, El 11/04/2014 17:30, Sandro von Matterhorn sandro.isole...@googlemail.com escribió: Hi everyone, we're getting strange messages from our Puppetmaster, without knowing, what

Re: [Puppet Users] Can't get puppet/passenger to stop using /home/puppet/.puppet

2014-04-11 Thread Matthaus Owens
For puppet 3.4.0 I would recommend using the config.ru that comes with puppet as an example. You can find it here: https://github.com/puppetlabs/puppet/blob/stable/ext/rack/config.ru Some aspects of it are different from the config.ru that you pasted, for example, This is what you pasted:

Re: [Puppet Users] Strange Messages from Puppetmaster

2014-04-11 Thread Sandro von Matterhorn
Am Freitag, 11. April 2014 17:56:03 UTC+2 schrieb Jose Luis Ledesma: For example this source = puppet:///ntp/ntpd.conf, Should be source = puppet:///modules/ntp/ntpd.conf, Regards, Thank you very much. It worked and it was sooo simple ;-) Have a nice weekend! -- You received this

Re: [Puppet Users] TMP files left behind on Windows server

2014-04-11 Thread Nick Miller
Thanks, I'll keep an eye out for that update. In the meantime, for anyone else having this problem, this is how I was able to work around it: exec{'remove_temp': command = C:\\Windows\\System32\\cmd.exe /c del *.TMP /f /q /a, cwd

[Puppet Users] Re: Passenger-hosted puppet master breaks after 3.4 upgrade

2014-04-11 Thread Guy Knights
I set up a completely new puppet server but with the same puppet/hiera config that we have in our svn repository, and it seems to be working. It appears that the symlink /etc/puppet/rack/config.ru that points to /usr/share/puppet/ext/rack/config.ru must also have its owner/group set to puppet.

[Puppet Users] selecting a command in a provider based on class variable?

2014-04-11 Thread Tim Mooney
Hi All! The tl;dr version: Can anyone point me at an example of an existing provider that selects a particular command based not on a facter fact or whether a particular path exists, but instead on a variable from a puppet class? The full version: We have puppet 3.4.2 on master and all

Re: [Puppet Users] puppet class require fails depending on declaration order

2014-04-11 Thread David Portabella
I didn't know about this *evaluation-order dependency.* Why does this evaluation-order dependency exists in puppet? Is it done in purpose, or it is a technical problem of the puppet implementation? Do you have an example where we would want to use this evaluation-order dependency? Or could