Re: [Puppet Users] apply seams to ignore modulepath set in environment.conf

2014-11-10 Thread Felix Frank
On 11/03/2014 05:35 PM, Malte Finsterwalder wrote: > > But the same modulepath is also configured in my environment. Here are > the config files: > # > # /etc/puppet/environments/production/environment.conf > ##

[Puppet Users] Re: module install fails

2014-11-10 Thread Jesse Scott
Hi André, Can you re-run the command with the --debug and --trace options? E.g. "puppet module install puppetlabs-git --debug --trace" It's hard to know exactly what's going wrong without the detail those options will provide. -Jesse On Monday, November 10, 2014 1:26:35 AM UTC-8, André Meyer

Re: [Puppet Users] puppetlabs/firewall and firewalld

2014-11-10 Thread Hunter Haugen
Unfortunately we (the puppetlabs module team) haven't yet started on the initiative to make this happen, but it has definitely been on our minds for a long while now. I made https://tickets.puppetlabs.com/browse/MODULES-1498 really quickly to begin tracking this work though; as of yet there is no

[Puppet Users] Re: Puppet Nodes

2014-11-10 Thread Dominic
> OK Think I found my own answer > https://docs.puppetlabs.com/puppet/latest/reference/lang_node_definitions.html node /^lab1\d+$/ { include common } node /^lab2\d+$/ { include somthingelse } -- You received this message because you are subscribed to the Google Groups "Puppet Users" group.

[Puppet Users] Announce: Puppet Server 0.4.0 available

2014-11-10 Thread Eric Sorenson
This release contains improvements based on feedback from the community and Puppet Labs QA testing. It has usability and correctness improvements, mainly around SSL and our interaction with systemd. Notable changes: * (SERVER-89) The Puppet Server CA now creates a 'puppet' Subject Alternate

[Puppet Users] Puppet Nodes

2014-11-10 Thread Dominic
Hello, New user to Puppet I am trying to see if Puppet can replace my Mac servers for managing 1200 clients. Testing has gone well and I am very impressed with the functions and potential this platform can offer me. However I have hit upon a sticking point. I need to manage lots of machines i

Re: [Puppet Users] how to send notices or if the nodes go in changed in the console using snmp traps to any monitoring tool

2014-11-10 Thread Wil Cooley
On Nov 7, 2014 5:43 AM, "Spriya" wrote: > > I have a requirement to send to snmp traps to any monitoring tool if i get any notice messages. or if the nodes to changed mode in the console. > > > Is anyone did this? Please share your ideas. You didn't mention what platform you're on, but if you're

Re: [Puppet Users] Error on puppet agent after upgrade to 3.7.1.

2014-11-10 Thread Schofield
Isolated the problem Facter 2.1.0 introduced the partitions fact. This fact calls Facter::Core::Execution::Posix.which('blkid') to locate the blkid executable. Turns out there is a directory /etc/blkid which unfortunately for us is on the PATH before /sbin/blkid. Facter::Core::Execution::

Re: [Puppet Users] Re: Puppet 3 scoping question

2014-11-10 Thread jcbollinger
On Friday, November 7, 2014 11:39:53 AM UTC-6, Felix.Frank wrote: > > On 11/07/2014 03:40 PM, jcbollinger wrote: > > If you need to support multiple some::fun_instances, with some but not > > all sharing any given $sname (i.e. a many to many relationship), then > > you're going to need to make

Re: [Puppet Users] List of available variables for use in templates

2014-11-10 Thread jcbollinger
On Friday, November 7, 2014 12:34:52 AM UTC-6, Andy Wong wrote: > > https://docs.puppetlabs.com/facter/2.2/core_facts.html#hostname > > this is what you want > No, actually, it's not. The string that is used to match nodes to node blocks is the the client's certname, which is available as $cl

Re: [Puppet Users] Re: Puppet development IDE (Geppetto) integrated within Eclipse using puppet & hiera - puppet module

2014-11-10 Thread jcbollinger
On Sunday, November 9, 2014 4:53:08 PM UTC-6, Felix.Frank wrote: > The class { 'name': } syntax allows you to pass parameters, but should > generally be avoided under any circumstances (if you ask me. Or John ;-) > > Yep :) Especially avoid the precise form Felix gave as an example, where yo

Re: [Puppet Users] Repositroy dependency

2014-11-10 Thread Felix Frank
On 11/02/2014 06:51 PM, Royee Tager wrote: > I have downloaded some modules (apache, ntp, mysql, etc) that I > would like to assign (I have Foreman as the ENC) to my hosts . > In addidtion, I have created a spacewalk client module (a module which > connects the hosts to the local yum repositroy

Re: [Puppet Users] Could not connect to ActiveMQ Server - activemq for mcollective failing

2014-11-10 Thread Jeff Sparrow
Thanks for replying. I thought I had answered all my posts out there. Here was the fix: I was able to resolve this by the following: > ensure activemq is owner and has access to /var/log/activemq and all sub > dirs. > ensure /etc/init.d/activemq has: ACTIVEMQ_CONFIGS="/etc/sysconfig/activemq"

[Puppet Users] Having trouble purging an old node

2014-11-10 Thread Jonathan Gazeley
Hi peeps, I'm having trouble purging a node from PuppetDB. This is something I've done many times before - I just issue "sudo puppet node deactivate " on the puppetmaster, the node gets deactivated in PuppetDB, and other nodes purge appropriate resources on their next checkin (e.g. the monito

[Puppet Users] module install fails

2014-11-10 Thread André Meyer
Hello, Whenever I try to install a module from the puppet forge it fails, for every plugin. Here is an example with the git plugin: puppet module install puppetlabs-git Notice: Preparing to install into /etc/puppet/modules ... Notice: Downloading from https://forge.puppetlabs.com ... Notice: Ins

Re: [Puppet Users] execution expired with a puppetmaster with more then enough resources

2014-11-10 Thread Felix Frank
Hi, how long does it take to compile one catalog? Examine the puppetmaster logfile. How many agents are there and how frequently do they check in? Depending on the scale of your agent network, 4 CPUs may actually be too few. The master is almost always CPU bound. Cheers, Felix On 11/01/2014 09

Re: [Puppet Users] Please Help Me - Foreman / Smart Class Parameter / Puppet / Modules Order

2014-11-10 Thread Felix Frank
Hi, your approach is not all that bad. You might want to consider adopting Roles and Profiles. Your "wrapper" class is essentially a role. The relationship Class['::local_repository'] -> Class['::spacewalk'] is probably the way to go, assuming that your modules have sound internal relations (th