Re: [Puppet Users] Kindly share Modules of CLAMV for Centos ,Ubuntu,Suse

2014-06-25 Thread shyam sundar Keshari
Hi Jerald , Thanks for reply with link . I checked that but none of this modules support for Suse Operating system . I got modules for Centos and Ubuntu but not for Suse . So Kindly if you have any modules for Suse update me On Wed, Jun 25, 2014 at 3:56 AM, Jerald Sheets que...@gmail.com

Re: [Puppet Users] Belgian Puppet User Group - Something about Mcollective 24th of June

2014-06-25 Thread Johan De Wit
The presentation of this meetup is available at following locations : http://files.meetup.com/7630312/bpug_mcollective_20140624.pdf http://www.slideshare.net/johandw/bpug-mcollective-20140624 I also uploaded the sources for this presentation to github :

[Puppet Users] ERROR: Could not evaluate: Could not retrieve information from environment production source(s)

2014-06-25 Thread shlo . afgin
Hi, I upgrade my Puppet server and agent to Puppet 3.6.2 ( I had Puppet server: 3.3.1 Puppet agent: 2.7.25). When I run puppet on the agent I get the errors: Error: /File[/var/lib/puppet/facts.d]: Could not evaluate: Could not retrieve information from environment production source(s)

[Puppet Users] Puppetdb not receiving any catalog updates.

2014-06-25 Thread Jelle B.
Been fighting witht his now for a bit , and IRC didnt seem to have any answers so thought I would ask here. I have 2 platforms , one prod one pre-prod the pre-prod runs basiclly the latest versions puppetdb 2 and puppet 3.62 for clients and master. This platform is also where I am having

[Puppet Users] What is the execution order in a manifest file

2014-06-25 Thread Malintha Adikari
Hi, In my manifest file there are 3 elements ( 2 defined types and one exec) define *fill_templates*($location) { file { $location/$name/: ensure = present, owner = 'root', group = 'root', mode= '0777', content = template(config/${name}.erb),

[Puppet Users] SOLVED ? Re: ERROR: Could not evaluate: Could not retrieve information from environment production source(s)

2014-06-25 Thread shlo . afgin
This problem disappear without know reason So Ignore my question. On Wednesday, June 25, 2014 12:06:47 PM UTC+3, shlo@gmail.com wrote: Hi, I upgrade my Puppet server and agent to Puppet 3.6.2 ( I had Puppet server: 3.3.1 Puppet agent: 2.7.25). When I run puppet on the agent I

[Puppet Users] How to loop exec in a manifest

2014-06-25 Thread Malintha Adikari
Hi, My requirement is copy some files from agent source to agent's destination. I have the list of files. I store the list of file as a hash looks follows *$foo = [{addr = $source1, dest = $destination1}, {addr = $source2, dest =

Re: [Puppet Users] Re: apache module class order issue with ENC

2014-06-25 Thread jcbollinger
On Tuesday, June 24, 2014 9:49:19 AM UTC-5, treydock wrote: I was a bit vague in my report initially, will try to clarify. The error about undefined method = for :undef is due to using version 1.0.1 of the module which did not have the fix for MODULES-910. The fact the value was :undef

[Puppet Users] Re: Is there a way to use ruby commands inside puppet manifest

2014-06-25 Thread jcbollinger
On Tuesday, June 24, 2014 6:14:00 AM UTC-5, Malintha Adikari wrote: Hi, I have faced a blocker in my manifests. I am using external facters and I use those external facters inside my templates ( after parsing it to xml ). I want to do the same thing in my manifets as I want to get some

Re: [Puppet Users] PuppetDB connection issue - Failed to connect!!

2014-06-25 Thread Greg Cockburn
On Thursday, June 19, 2014 12:17:41 AM UTC+10, Sans wrote: Thanks Rakesh! But, as you probably can guess, that didn't change a thing; still getting the same error. I'm not sure if PuppetDB look in the DNS record (as opposed to hosts file), in that case it never gonna work. Best!!

[Puppet Users] appdmg and pkgdmg providers download packages insecurely?

2014-06-25 Thread Jack Singleton
I just noticed the appdmg and pkgdmg package providers (used on osx) download packages using the curl flag -k aka --insecure which disables certificate checking. Is there any reason for this? At the very least there should be a way to turn insecure mode off. Really it should never be enabled

Re: [Puppet Users] How to loop exec in a manifest

2014-06-25 Thread Spencer Krum
First, you can use the file type instead of the exec type. Source can be a local path. Second, in a define you must add $name to the title of every resource to prevent duplicate definition errors. Third, I would build a hash of every file in your list, then call create_resources() on that hash.

Re: [Puppet Users] What is the execution order in a manifest file

2014-06-25 Thread Jason Antman
You should use the 'require' metaparameter, or if you absolutely need to, explicit ordering. docs.puppetlabs.com will give you further information. You should also read the Style Guide, and not throw all of that in one manifest. On Wed, Jun 25, 2014 at 8:04 AM, Malintha Adikari

[Puppet Users] First anniversary of the module team

2014-06-25 Thread Ashley Penney
The 1st anniversary of the module team! Hello from the module team here at Puppet Labs! I’m starting this email with a lie because I’m not sure exactly when our first anniversary really is, but I started on the 1st of July and the team had only just gotten started, so that’s as good a date as

Re: [Puppet Users] Puppetdb not receiving any catalog updates.

2014-06-25 Thread Ken Barber
Been fighting witht his now for a bit , and IRC didnt seem to have any answers so thought I would ask here. I have 2 platforms , one prod one pre-prod the pre-prod runs basiclly the latest versions puppetdb 2 and puppet 3.62 for clients and master. This platform is also where I am having

Re: [Puppet Users] PuppetDB connection issue - Failed to connect!!

2014-06-25 Thread Ken Barber
Did you ever fix this. I am having the same problem. It is an issue with SSL. Chrome gives this error: Error code: ERR_SSL_PROTOCOL_ERROR. Curl gives this error curl: (35) Unknown SSL protocol error in connection If I figure more out, I will post the fix. These two errors are unrelated to

Re: [Puppet Users] PuppetDB connection issue - Failed to connect!!

2014-06-25 Thread Ken Barber
Did you figure this out Sans? My only next logical step would be to have you show me a full git repository with a working copy of the code/vagrantfile/etc. that is actually breaking. ken. On Wed, Jun 18, 2014 at 7:17 AM, Sans r.santanu@gmail.com wrote: Thanks Rakesh! But, as you probably

[Puppet Users] issue when installing hiera-gpg

2014-06-25 Thread Supriya Uppalapati
Hi, My puppet-enterprise version 3.2.1 let me know. Please help me *$gem install hiera-gpgBuilding native extensions. This could take a while...ERROR: Error installing hiera-gpg:ERROR: Failed to build gem native extension.* */opt/puppet/bin/ruby

[Puppet Users] Re: appdmg and pkgdmg providers download packages insecurely?

2014-06-25 Thread Jack Singleton
Lines in code that are hard coded to use the -k flag: https://github.com/puppetlabs/puppet/blob/f1e9a7cb00a3ec01d938cd5c5b1406a82b63d5e7/lib/puppet/provider/package/appdmg.rb#L63

[Puppet Users] Cannot find installed module

2014-06-25 Thread virgil
Hi guys, I am new to puppet and here is my problem: puppet module install puppetlabs-dism In the puppet PE console, add class, can not find the classes of this module. Tried to modify puppet.conf for module location, not working. Thanks. Virgil -- You received this message because you are

Re: [Puppet Users] Cannot find installed module

2014-06-25 Thread Ryan Coleman
Hi Virgil, Unlike many Puppet modules, the puppetlabs-dism module does not provide any classes for you to interact with in the PE console. Instead, it provides custom extensions in the form of a dism resource type. You're meant to use this type within your own modules, new or existing, to manage

[Puppet Users] Error 400 on SERVER: Could not find data item wls_jdk_version in any Hiera data file and no default supplied at /etc/puppetlabs/puppet/environments/testing/modules/weblogic_esb/manifest

2014-06-25 Thread Supriya Uppalapati
Hi, I am having an issue could not find any data item Here is my manifests: *class weblogic_esb { 2 3 include wls1036 4 include orautils 5 6 Class['wls1036'] - Class['orautils'] 7 8 class wls1036{ 9 class { 'wls::urandomfix' :} 10 11 $jdkWls11gJDK = hiera('wls_jdk_version') 12

Re: [Puppet Users] Cannot find installed module

2014-06-25 Thread virgil
You are right! Thank you so much, Ryan! On Wednesday, June 25, 2014 1:30:27 PM UTC-7, Ryan Coleman wrote: Hi Virgil, Unlike many Puppet modules, the puppetlabs-dism module does not provide any classes for you to interact with in the PE console. Instead, it provides custom extensions in

[Puppet Users] Announce: Facter 2.1.0 available!

2014-06-25 Thread Eric Sorenson
Facter 2.1.0 is a backward-compatible features-and-fixes release in the Facter 2 series. In addition to squashing a variety of bugs, it includes a couple of new (structured) facts, adds support for detecting Docker containers, and improves operating system detection. Shout out to Chris

[Puppet Users] 2-3 unlisted incompatible change to array slices?

2014-06-25 Thread mpounsett
While migrating our local modules from puppet 2 to puppet 3 I think I've found a backwards-incompatible change that's not listed in the release notes. I'd like to verify that what I'm seeing is expected, and make sure I'm not missing any other side-effects of the change. In puppet 2

Re: [Puppet Users] Re: RHEL7 facts missing

2014-06-25 Thread Tim Mooney
In regard to: Re: [Puppet Users] Re: RHEL7 facts missing, Bas Wildemann...: I think you may be right and I'm thinking about opening a ticket. AFAIK net-tools will be deprecated in future RHEL versions, so a solution is necessary. I discovered this issue independently last week, and opened a

[Puppet Users] SSL error when after restarting httpd. CA information missing/or wrong?

2014-06-25 Thread Tom Hallam
Hi everybody I've been running puppet under Apache/Passenger for some time. I restarted Apache this morning I'm getting the following error --- [root@ecm-rhl-032 ~]# puppet agent --test Warning: Unable to fetch my node definition, but the agent run will continue: Warning: SSL_connect

[Puppet Users] How to use defined type as requirement inside exec

2014-06-25 Thread Malintha Adikari
Hi, I have defined type as follows *define fill_templates($location) {$fileName = $name[filename] $fileLocation = $name[filelocation] file { ${fileLocation}/${fileName}/:ensure = present,owner