Re: [Puppet Users] Puppet 2.6.x is now EOL

2013-05-04 Thread Erik Dalén
On 2 May 2013 21:27, Gabriel Filion lelu...@gmail.com wrote: On 30/04/13 05:05 PM, Michael Stahnke wrote: The time has come for us to say good-bye to Puppet 2.6.x. Puppet 2.6.x is now end of Life, as originally announced Jan 17, 2013. hmm .. so that means that puppet squeeze won't get any

Re: [Puppet Users] Practices: what _not_ to manage with Puppet?

2013-05-04 Thread Erik Dalén
I think that for some things where there are specialized protocols available to configure certain things it can be easier to use them instead of trying to make puppet do them same. But I'd definitely configure the servers and clients for those protocols using Puppet. Examples would be using

Re: [Puppet Users] Practices: what _not_ to manage with Puppet?

2013-05-04 Thread Martin Langhoff
On Sat, May 4, 2013 at 7:33 AM, Erik Dalén erik.gustav.da...@gmail.com wrote: I'd definitely configure the servers and clients for those protocols using Puppet. Is that what you do, or what you _would_ do? ;-) Or using DHCP to configure networking instead of having puppet setting it

Re: [Puppet Users] Practices: what _not_ to manage with Puppet?

2013-05-04 Thread Erik Dalén
On 4 May 2013 13:37, Martin Langhoff martin.langh...@gmail.com wrote: On Sat, May 4, 2013 at 7:33 AM, Erik Dalén erik.gustav.da...@gmail.com wrote: I'd definitely configure the servers and clients for those protocols using Puppet. Is that what you do, or what you _would_ do? ;-) It is

Re: [Puppet Users] Re: Practices: what _not_ to manage with Puppet?

2013-05-04 Thread Martin Langhoff
On Fri, May 3, 2013 at 4:43 PM, Schofield dbschofi...@gmail.com wrote: Everything else is managed by puppet. Do you manage complex network setups (bonding, routing) via puppet? There is a certain degree of chicken-and-egg in that; how do you handle managing configuration without breaking the

Re: [Puppet Users] Re: Practices: what _not_ to manage with Puppet?

2013-05-04 Thread Luke Bigum
On Saturday, May 4, 2013 12:43:57 PM UTC+1, Martin Langhoff wrote: On Fri, May 3, 2013 at 4:43 PM, Schofield dbsch...@gmail.comjavascript: wrote: Everything else is managed by puppet. Do you manage complex network setups (bonding, routing) via puppet? There is a certain degree of

[Puppet Users] Re: AWS OpsWorks Puppet support

2013-05-04 Thread Martin Rio
AWS pays lot of attention to customer feedback. Anyone who want's Puppet support in OpsWorks, take a minute and ask for it here: https://forums.aws.amazon.com/thread.jspa?messageID=448167 On Monday, March 4, 2013 6:30:55 AM UTC-8, James Turnbull wrote: Hi all If you are interested in

[Puppet Users] Can anyone recommend a module with a resource managing a block of lines in a file?

2013-05-04 Thread Schofield
I'm hoping a commonly used module that provides a resource for managing multiple contiguous lines in a file already exists and someone can point me to it. I want something like the file_line type in the puppet labs stdlib module but have it check multiple lines instead of just one. -- You

[Puppet Users] New to hiera

2013-05-04 Thread Josh
Hello, I've never looked at heira before. I'm looking into upgrading from 2.7 to 3, and it seems that heira is the recommended way to do things now. From what I've read so far, it looks like one professed reason to use it is to go from parameterized classes to hiera overrides, because I guess

Re: [Puppet Users] New to hiera

2013-05-04 Thread Brian Lalor
On May 4, 2013, at 9:50 PM, Josh j...@endries.org wrote: So instead of: class bar ($foo = 'blah') { ... } One would have something like: class bar { $foo = heira('bar::foo', 'blah') } Is that correct? That's the hard way to do it. The easy way is to do class bar ($foo) { …

Re: [Puppet Users] New to hiera

2013-05-04 Thread Ashley Penney
On Sat, May 4, 2013 at 9:50 PM, Josh j...@endries.org wrote: I'm not yet sold on heira; so far it seems to just shift complexity outside of the classes and add a little more in the process, with hierarchies and stuff, and now I have data in multiple places... I still need case statements to

[Puppet Users] Version Controlling Puppet Configs with svn

2013-05-04 Thread P Cornellio
Hi, I an in the process of putting my Puppet Master configs into version control using SVN. I'm concerned about file permission and ownership changes as a result of this. SVN does not store permissions. How does one safely use SVN with puppet configs? Cheers, Pete -- You received this