Re: [Puppet Users] Re: A working firewall module

2011-07-11 Thread Ronen Narkis
The only way I was able to make it restart was to use: File["/etc/sysconfig/iptables"] ~> Service[iptables] Ronen On Mon, Jul 11, 2011 at 12:59 PM, Ronen Narkis wrote: > Just did, > > Thank you! > Ronen > > > On Mon, Jul 11, 2011 at 1:50 AM, Ken Barber

Re: [Puppet Users] Re: A working firewall module

2011-07-11 Thread Ronen Narkis
/github.com/puppetlabs/puppetlabs-firewall/issues > > Alessandro's suggestions still hold true about applying firewall rules > with related classes. I'm a big fan of this methodology instead of > having a long list of rules. This is why a firewall type that handles > individ

Re: [Puppet Users] Re: A working firewall module

2011-07-10 Thread Ronen Narkis
Hey Ken, the main issue was that the provider wasn't detecting existing rules but instead kept adding them in, another issue is that the rules aren't persistent (restarting the service clears them out), Alessandro ill check it out thanks! Ronen On Sun, Jul 10, 2011 at 10:38 PM, Christopher Web

[Puppet Users] A working firewall module

2011-07-10 Thread Ronen Narkis
Iv been going through a multitude of firewall modules not being able to find a simple module that open and closes ports on Redhat/Centos 5.6 All the modules that iv tried keep open ports multiple times (each time puppet agent runs): ACCEPT -A INPUT -p tcp -m multiport --dports 80 -m comment --co

Re: [Puppet Users] puppetmaster gets no certificate request

2011-07-02 Thread Ronen Narkis
You need to sign the client certificate first, Did you do all the steps as described under http://projects.puppetlabs.com/projects/1/wiki/Certificates_And_Security(example section) ? Ronen On Sat, Jul 2, 2011 at 1:39 AM, newguy wrote: > Hi guys, > I am very new to puppet and am trying to insta

Re: [Puppet Users] Puppet agent problem on Ubuntu

2011-06-21 Thread Ronen Narkis
Hey Im running puppet on Ubuntu On Tue, Jun 21, 2011 at 3:25 PM, John Nicholson wrote: > > I'm in the process of setting up puppet and experiencing some issues. > I'm running Ubuntu 11.04 desktop and server in two seperate VM's. I've > installed puppet master (2.6.4) and puppet (2.6.4). The puppet

Re: [Puppet Users] Weird paramterized issue

2011-06-06 Thread Ronen Narkis
t > using 'include "nodejs"' elsewhere - or some other usage of it where > you are not specifying user. You might be seeing non-deterministic > class loading order which may be why your symptoms are intermittent. > > ken. > > On Sat, Jun 4, 2011 at 6:56 PM,

Re: [Puppet Users] Pushing changes to nodes

2011-06-05 Thread Ronen Narkis
There is such an option (not ssh based): http://www.puppetlabs.com/mcollective/introduction/ It has a plugin for puppet as well: http://projects.puppetlabs.com/projects/mcollective-plugins/wiki/ToolPuppetcommander Ronen On Sun, Jun 5, 2011 at 2:48 PM, Pavel Shevaev wrote: > Hi! > > I've final

[Puppet Users] Weird paramterized issue

2011-06-04 Thread Ronen Narkis
Im using a parameterized class in my site.pp: class development($user) { class{"basenode": user => $user} class{"nodejs": user => $user} include "coffeescript" include "ruby" } This class defines nodejs class that epects a user as input: class nodejs($user) { class {"nodejs::npm": use

Re: [Puppet Users] node class include vs module include

2011-05-26 Thread Ronen Narkis
I would also expect Class["git"] -> Vcsrepo <| |> to work, but it doesn't Ronen On Fri, May 27, 2011 at 12:49 AM, Ronen wrote: > Hey, > > Im trying to use the puppet vcsrepo module, one of the issues I had > with it is that its required to have a vcs installed before the plugin > is used with