[Puppet Users] WPUG: Reusable Puppet Modules - Development & Testing (lecture)

2015-03-13 Thread Krzysztof Suszyński
Hi, I'm pleased to publish slides for lecture: "Reusable Puppet Modules - Development & Testing" that I've performed on WPUG (Warsaw Puppet User Group) on March 11th, 2015. http://slides.com/cardil/reusable-puppet-module-development-and-testing I hope at least some of you will find this presen

[Puppet Users] puppet 3.7.4 using auth.conf file from github - "default" acl at end apparently preventing access?

2015-03-13 Thread Johnson Earls
Operating System: Oracle Linux 6.5 Puppet version: Open Source Puppet 3.7.4 (installed via gems) Ruby version: 2.1.0 (locally built package) Apache version: 2.2.15 Passenger version: 5.0.4 I apologise in advance if this post sounds confused and wanders all over; it mirrors its author in that r

Re: [Puppet Users] 2015 Devops survey - please weigh in

2015-03-13 Thread Tim Skirvin
Eric Sorenson writes: >>> Diversity is very important to us, so this year's survey also asks about >>> gender and diversity in tech. >> I am still concerned that this is being accomplished through the >> use of misogynist language. I hope that nobody is turned away from the >> field

Re: [Puppet Users] Re: Puppet as patch management

2015-03-13 Thread Alfredo De Luca
Thanks Martin. It sounds really good. Would you share some configuration on place? When you say patching you mean only linux with packages updates? Regards On 13/03/2015 8:08 PM, "Martin Willemsma" wrote: > I do have a succes story for using Puppet as a patch management tool. We > build a system

Re: [Puppet Users] 2015 Devops survey - please weigh in

2015-03-13 Thread Eric Sorenson
On Friday, March 13, 2015 at 10:21:26 AM UTC-7, Tim Skirvin wrote: > > Eric Sorenson writes: > > > Diversity is very important to us, so this year's survey also asks about > > gender and diversity in tech. > > I am still concerned that this is being accomplished through the > use of

Re: [Puppet Users] Node key merging/overloading - node inheritance vs hiera

2015-03-13 Thread Bostjan Skufca
On Friday, 13 March 2015 17:40:50 UTC+1, Christopher Wood wrote: > > On Wed, Mar 11, 2015 at 09:25:04AM -0700, Bostjan Skufca wrote: > >On Wednesday, 11 March 2015 14:57:00 UTC+1, Christopher Wood wrote: > > (I've had some nasty run-ins with merging lookups and have decided > > t

[Puppet Users] non-English puppet resources?

2015-03-13 Thread Christopher Wood
Are there any puppet resources (blogs, howtos, videos) in languages other than English? I'm getting all sorts of results for cloth puppets and politics but can't seem to find any blog lists or anything. (Or maybe I am but I can't tell due to not speaking those languages.) -- You received this

Re: [Puppet Users] 2015 Devops survey - please weigh in

2015-03-13 Thread Tim Skirvin
Eric Sorenson writes: > Diversity is very important to us, so this year's survey also asks about > gender and diversity in tech. I am still concerned that this is being accomplished through the use of misogynist language. I hope that nobody is turned away from the field simply by goin

[Puppet Users] 2015 Devops survey - please weigh in

2015-03-13 Thread Eric Sorenson
Hi all, please excuse the marketing digression, but this is pretty important – if you saw my keynote at Puppet Camp LA or Phoenix last month, we talked about the results of the DevOps Survey and how you can use it to convince your organization that your work with Puppet helps the bottom line in

Re: [Puppet Users] Node key merging/overloading - node inheritance vs hiera

2015-03-13 Thread Christopher Wood
On Thu, Mar 12, 2015 at 06:32:21AM -0700, jcbollinger wrote: >On Wednesday, March 11, 2015 at 8:57:00 AM UTC-5, Christopher Wood wrote: > > (Replying to two people in one email, hum.) > > On Wed, Mar 11, 2015 at 06:01:39AM -0700, jcbollinger wrote: > >    On Tuesday, March 10,

Re: [Puppet Users] Node key merging/overloading - node inheritance vs hiera

2015-03-13 Thread Christopher Wood
On Wed, Mar 11, 2015 at 09:25:04AM -0700, Bostjan Skufca wrote: >On Wednesday, 11 March 2015 14:57:00 UTC+1, Christopher Wood wrote: > > (Replying to two people in one email, hum.) > > I rather take your point, but isn't the requirement for different data > handling just anothe

[Puppet Users] puppetlabs/concat Problem on Windows

2015-03-13 Thread Fraser Goffin
Hi, I am attempting to use the puppetlabs/concat module on Windows, but having some problems. To keep things really simple since it illustrates the problem, here is the mainfest I'm using (note: it just uses concat at this stage) :- class concat_file { concat { 'E:/Temp/puppetTests/myfile

Re: [Puppet Users] Re: custom type/provider how to validate parameters are configured together

2015-03-13 Thread Stanley Karunditu
the glassfish module has a comprehensive test suite that answered some of my other questions on how to write puppet module tests. Thanks :) On Fri, Mar 13, 2015 at 9:31 AM, Gavin Williams wrote: > Stanley > > Take a look at > https://github.com/

Re: [Puppet Users] Re: custom type/provider how to validate parameters are configured together

2015-03-13 Thread Gavin Williams
Not a problem, glad could be of use :) Cheers Gavin On Friday, 13 March 2015 14:04:15 UTC, Stanley Karunditu wrote: > > the glassfish module has > a comprehensive test suite that answered some of my other questions on how > to write puppet mod

[Puppet Users] Trouble with service resource detecting systemd as provider on FC19

2015-03-13 Thread James Olin Oden
I am on Fedora Core 19 using Puppet version 3.7.4. When I was trying ensure a service was configured to start I would do something like: service { 'someservice': ensure => 'running', enable => true, } But when I would run puppet apply I would get the following error: Erro

[Puppet Users] Re: custom type/provider how to validate parameters are configured together

2015-03-13 Thread Gavin Williams
Stanley Take a look at https://github.com/fatmcgav/fatmcgav-glassfish/blob/develop/lib/puppet/type/authrealm.rb#L96-L99 for an example of a seperate validate block... HTH Gav On Friday, 13 March 2015 13:25:14 UTC, Stanley Karunditu wrote: > > building a custom type/provider and it has a set

[Puppet Users] custom type/provider how to validate parameters are configured together

2015-03-13 Thread Stanley Karunditu
building a custom type/provider and it has a set of parameters that need to be configured together. so if you set param A, you need to set param B,C,D. Validation should produce an error if this condition is not met. anyone know of a puppet module that does this so I can learn how to do this?

Re: [Puppet Users] Can a type/provider be written to use Python libraries ?

2015-03-13 Thread jcbollinger
On Thursday, March 12, 2015 at 10:46:57 AM UTC-5, LinuxDan wrote: > > Thanks for the sanity check, John. > > Next question: If I want to make a type/provider that depends on an > external script (Python in this case), does anyone know of a good example I > can use as a blueprint ? > If you ha

[Puppet Users] Re: Type/Provider Error: /Type[name]: Could not evaluate: No ability to determine if xxx exists

2015-03-13 Thread jcbollinger
On Friday, March 13, 2015 at 2:54:56 AM UTC-5, lupin...@gmail.com wrote: > > Hi, > > I'm on my first attempt of writing a custom type/provider and hope to > learn on the process. I'm got a stumbling block and lost on what's going > with this as I have defined the exist? method which apparently

[Puppet Users] Re: [ANN] CMITS 1.3 released on GitHub

2015-03-13 Thread Alessandro Franceschi
great work. the autogenerated PDF is impressive! On Thursday, March 5, 2015 at 11:49:13 PM UTC+1, Jared Jennings wrote: > > Configuration Management for IT Systems (CMITS) 1.3 has been released on > GitHub at . From the README: > > This is a toolset that makes it

[Puppet Users] how to install multiple packages from the list

2015-03-13 Thread Alex Miroshnik
Hi Guys, I need to install multiple packages on the Ubuntu 14.0.4 using puppet. All packages are listed in the file (about 100 packages) one package name on the row. Is this possible? If it is possible, could you please give me a hint how to do this. I know I can specify the array of the pack

[Puppet Users] Node Classifier API

2015-03-13 Thread sagaram ravinder
Please Let me Know How to Configure Node Classifier API ... & How to access Classifier API using Rest API client or Browsers. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send

Re: [Puppet Users] puppet for deployment of Java apps

2015-03-13 Thread Liping Huang
As I know linkedin is using glu for automatically deployment and glu already open-sourced, do you know is there some unify approach to deploy java applications(war, ear) to some standard server like tomcat, jboss, websphere. (Cargo maybe is one for support the most server with limitation) 在 20

Re: [Puppet Users] Re: Puppet as patch management

2015-03-13 Thread Martin Willemsma
I do have a succes story for using Puppet as a patch management tool. We build a system around PuppetDB and our internal CMDB to have patches installed automatically according to update schedules (input for puppet schedule type) and in a controlled manner. - Display package updates from PuppetDB i

[Puppet Users] Type/Provider Error: /Type[name]: Could not evaluate: No ability to determine if xxx exists

2015-03-13 Thread lupindeterd
Hi, I'm on my first attempt of writing a custom type/provider and hope to learn on the process. I'm got a stumbling block and lost on what's going with this as I have defined the exist? method which apparently the usual suspect for this error. puppet resource tsam_host 'wakwak' ip='192.168.20.