[Puppet Users] Run command on one server when a file updates on another

2016-12-20 Thread Larry Jacobson
I want to update a service on a server (server B) when a file changes on a different server (serverA). I am using stored configs with puppetdb. When I do something like the code below I get the following error message Error 400 on SERVER: Invalid relationship: File[/etc/test.txt] { notify =>

[Puppet Users] Re: Puppet with Satellite 6. Customize puppet modules

2015-01-23 Thread Larry
A non satellite way to do this is through Hiera and a custom fact. That is a custom fact would specify site and a hiera lookup for that site would specify values specific for the node. On Wednesday, January 21, 2015 at 12:28:11 PM UTC-5, Biju Joseph wrote: > > > Puppet with Satellite 6. How to

Re: [Puppet Users] Anyone made parser = future working on CentOS 6.5 & Ruby 1.8.x?

2014-11-22 Thread Larry Liu
ppet/indirector/catalog/compiler.rb:92:in `compile' /usr/lib/ruby/site_ruby/1.8/puppet/indirector/catalog/compiler.rb:52:in `find' /usr/lib/ruby/site_ruby/1.8/puppet/indirector/indirection.rb:201:in `find' /usr/lib/ruby/site_ruby/1.8/puppet/application/master.rb:166:in `compile' /usr/li

[Puppet Users] Anyone made parser = future working on CentOS 6.5 & Ruby 1.8.x?

2014-11-21 Thread Larry Liu
Hi everyone, According to puppetlab's doc, parser=future is supposed to work with puppet version 3.5 or higher. I'm on 3.7.1 which falls under https://docs.puppetlabs.com/puppet/latest/reference/experiments_future.html, but it has not worked for me at all. Interestingly it works fine if I run

[Puppet Users] Invoke another agent within agent

2014-07-15 Thread Larry Altomare
Hi, I have created a custom agent to deploy code, from this agent I would like to leverage the code in the nrpe agent and invoke it from my agent. Is it possible to invoke another agent from an agent. Here is a snippet of my code. module MCollective module Agent class Resindeployhttps://

[Puppet Users] Dashboard cert uses wrong name

2014-04-08 Thread Larry Edelstein
on EC2. Ideas? Why it happened? And to fix it, is there an option I can use on install, perhaps, or should I just modify a bunch of config files and regenerate the certs? Larry Edelstein Sales Engineer Klocwork -- You received this message because you are subscribed to the Google Groups &

[Puppet Users] How do I prevent logging of secure data?

2014-02-24 Thread Larry Fast
By default puppet will report the changes to any files it updates. If the file includes any secure data like passwords or private encryption keys, that also shows up in the logs. Is there any way to block this level of logging for individual files? Disabling it for all files is also acceptab

[Puppet Users] Re: Use the same resource in two dependent classes

2014-02-17 Thread Larry Fast
Declaring the Service as a Virtual Resource might help but I'm not sure how you inject B's dependencies. http://docs.puppetlabs.com/guides/virtual_resources.html It might just require a Notify inside B. On Monday, February 17, 2014 3:41:14 AM UTC-8, zerozer...@gmail.com wrote: > > Hi, > I have

Re: [Puppet Users] How do I quiesce a puppetmaster before reconfiguring it?

2014-02-09 Thread Larry Fast
graceful-stop seems to be a modest improvement but its not a panacea. AFAIK it only ensures that open connections are not dropped. A puppet run seems to involve multiple connections. At best this only completes individual transactions before shutdown. Also, when I look at this problem in a

[Puppet Users] can puppet manage puppet agents or puppetmasters?

2014-02-08 Thread Larry Fast
https://ask.puppetlabs.com/question/4694/updating-puppet-agents/ I'm looking at this thread from ask.puppetlabs and so far the the only answer seems to be - don't use puppet to manage puppet. I'm asking the broader community because I'm still naively hopeful that puppet can manage its own inst

[Puppet Users] How do I quiesce a puppetmaster before reconfiguring it?

2014-02-08 Thread Larry Fast
If I need to do any maintenance on my puppetmaster I would like to ensure that I don't break any partially completed puppet runs. Is there any way to quiesce the puppetmaster before shutting down the service? I run my puppetmaster on top of apache passenger. If I execute "service httpd stop" it

[Puppet Users] Re: Does eyaml CLI have options to specify the private/public key paths?

2014-02-07 Thread Larry Fast
And now I see why I hadn't found --help helpful. In 2.0.0 eyaml --help does not give a dump of options. You have to run eyaml --help to see a list of options for that command. Don't know if that's good or bad. IMO it would be nice to see more information in top level help. -- You received

[Puppet Users] Creating new eyaml entries when private key is not available

2014-02-07 Thread Larry Fast
Our plan for eyaml is that operations owns and protects the private key. So developers only have access to the public key and after creating new encrypted values cannot decrypt them. Unless I'm missing something, developers won't be able to use 'eyaml edit' because it requires the private key.

[Puppet Users] Re: Does eyaml CLI have options to specify the private/public key paths?

2014-02-07 Thread Larry Fast
Thanks James. --help should have been blindingly obvious but it slipped my flu infested mind. Cheers! -- 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 an email to puppet

[Puppet Users] Does eyaml CLI have options to specify the private/public key paths?

2014-02-06 Thread Larry Fast
The default value for the private key path in the eyaml CLI is ./keys/private_key.pkcs7.pem. Is there an CLI option to override the default? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving ema

[Puppet Users] Re: hiera-eyaml doesn't seem to work with the hiera_hash() function

2014-02-06 Thread Larry Fast
Correction: I was running puppet 3.2.3. I upgraded my server to 3.4.2 and the problem is still there. -- 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 an email to puppet-us

[Puppet Users] Re: hiera-eyaml doesn't seem to work with the hiera_hash() function

2014-02-06 Thread Larry Fast
Correction: I'm running puppet 3.2.3. I will upgrade to 3.4.2 to see if the problem goes away. -- 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 an email to puppet-users+uns

[Puppet Users] Re: hiera-eyaml doesn't seem to work with the hiera_hash() function

2014-02-06 Thread Larry Fast
Correction: I'm running puppet 3.2.3. I will upgrade to 3.4.2 to see if the problem goes away. On Thursday, February 6, 2014 10:22:07 AM UTC-8, Larry Fast wrote: > > I just started evaluating hiera-eyaml and hit a glitch. It seems that any > attempt to read a hash in an ey

[Puppet Users] hiera-eyaml doesn't seem to work with the hiera_hash() function

2014-02-06 Thread Larry Fast
I just started evaluating hiera-eyaml and hit a glitch. It seems that any attempt to read a hash in an eyaml file using hiera_hash(), produces an error: "Error 400 on SERVER: Resolution type is hash but parsed_answer is a Hash" The error occurs even if the hash does not contain any encrypted val

Re: [Puppet Users] Passenger-Rack error 500: no such file to load -- rack

2013-08-13 Thread Larry Fast
Thanks Denmat, It was probably crosstalk between gems and RPMs. Turns out that the rubygems RPM was missing some files. Likely cause was accidentally installing and uninstalling rubygems via non-rpm. Reinstalling the RPM fixed the problem. For the benefit of others, here's how we found the p

[Puppet Users] Passenger-Rack error 500: no such file to load -- rack

2013-08-12 Thread Larry Fast
I have a puppetmaster running within passenger+rack. It has been running properly for almost a year and decided to stop working on the weekend. Now I'm getting the Purple "Ruby (Rack) application could not be started" screen with Error: no such file to load -- rack Application: /data1/rack/pupp

[Puppet Users] Re: Not collecting exported resources without storeconfigs

2013-07-26 Thread Larry Long
are right about my typo with manifests instead of manifest. Sometimes I guess you just need a second set of eyes! It didn't error out, but changing that and it looks like my module with storeconfigs is now working. Thank you!!! -Larry On Wednesday, July 24, 2013 11:57:17 PM UTC-4, Larry

[Puppet Users] Re: Not collecting exported resources without storeconfigs

2013-07-25 Thread Larry Long
Well, it seems puppet config print is useless as it is incorrect with most values it shows. I know storeconfigs are up and running and I think its going to puppetdb. I am still having issues with my mod. On Wednesday, July 24, 2013 11:57:17 PM UTC-4, Larry Long wrote: > > # cat /etc/

[Puppet Users] Re: Not collecting exported resources without storeconfigs

2013-07-25 Thread Larry Long
, Larry Long wrote: > > # cat /etc/redhat-release > CentOS release 6.4 (Final) > # puppet --version > 3.2.3 > # rpm -q puppetdb > puppetdb-1.3.2-1.el6.noarch > > I am now receiving "Not collecting exported resources without > storeconfigs" for my opsview module

[Puppet Users] Re: Not collecting exported resources without storeconfigs

2013-07-25 Thread Larry Long
Maybe an issue with puppetdb? I see some weirdness, although no apparent errors on it. On Wednesday, July 24, 2013 11:57:17 PM UTC-4, Larry Long wrote: > > # cat /etc/redhat-release > CentOS release 6.4 (Final) > # puppet --version > 3.2.3 > # rpm -q puppetdb > puppetdb-1.3

[Puppet Users] Re: No reports in foreman

2013-07-25 Thread Larry Long
I have my foreman running over Passenger, but if you are using the default webrick, you need to specify the port. The default is 3000. On Thursday, July 25, 2013 8:04:47 AM UTC-4, Andreas Dvorak wrote: > > Dear all > > I am trying to set up reports in foreman, but foreman tells me to > conf

Re: [Puppet Users] Re: Not collecting exported resources without storeconfigs

2013-07-25 Thread Larry Long
node.rb node_terminus = exec ca = true ssldir = /var/lib/puppet/ssl downcasefacts = true storeconfigs = true storeconfigs_backend = puppetdb [prd] modulepath = /etc/puppet/modules:/etc/puppet/modules/prd manifests = /etc/puppet/environmen

[Puppet Users] Re: Not collecting exported resources without storeconfigs

2013-07-25 Thread Larry Long
I really don't want to go back to ActiveRecord... any ideas anyone? On Wednesday, July 24, 2013 11:57:17 PM UTC-4, Larry Long wrote: > > # cat /etc/redhat-release > CentOS release 6.4 (Final) > # puppet --version > 3.2.3 > # rpm -q puppetdb > puppetdb-1.3.2-1.el6.noa

[Puppet Users] Not collecting exported resources without storeconfigs

2013-07-24 Thread Larry Long
I am still new to puppetdb so maybe I am missing something. This is from puppet.conf: storeconfigs = true thin_storeconifgs = false storeconfigs_backend = puppetdb Any ideas? Thanks, -Larry -- You received this message because you are subscribed to the Google Groups "Puppet U

[Puppet Users] Enterprise Puppet 3 with AIX WPAR support

2013-07-17 Thread Larry Sybrandt
Hello All Just wondering where to manage an AIX server with multiple WPARS. At the host level or at each guest level? It seems like one way would be easier than another. I just can't figure out which one that is. -- You received this message because you are subscribed to the Google Groups

[Puppet Users] What are the expected return codes for provider methods param() & param()=

2013-07-07 Thread Larry Fast
I'm getting unexpected behavior from my provider methods. Here's the example. parameter p resource[ :p ] = 'hello' def p() return 'hello' end def p()= return true # Does the return value even matter? end Problem 1: p()= is getting called. Given that the return from p() matches the re

[Puppet Users] Re: Can a type-provider 'require' other files? Do all files in the type-provider tree get sent to the agent?

2013-07-03 Thread Larry Fast
Thanks, yes it was that simple. It would have worked first time if I just had put the file in the provider folder instead of the type folder. Doh! Cheers, Larry -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from

[Puppet Users] Can a type-provider 'require' other files? Do all files in the type-provider tree get sent to the agent?

2013-07-03 Thread Larry Fast
I'm turning an existing ruby script into a type-provider pair. My first desire was to simply 'require' the original ruby file in the new provider file. Unfortunately my ruby file doesn't get downloaded from master to agent. Is there something reasonably simple I can do to ensure that this fil

[Puppet Users] How can an ENC get the --environment value specified on a puppet agent commandline?

2013-06-18 Thread Larry Fast
Is there any way to pass puppet run details to an ENC. Most importantly I want to know the Environment value the puppet Agent is asking for. More generally is it possible to query the puppet configuration values? One thought I had is to turn the puppet config into FACTS. Then the ENC can get t

Re: [Puppet Users] New to hiera

2013-05-06 Thread Larry Fast
mes with the following warning: # FQDN should only be used for temporary overrides. Cheers, Larry -- 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 an email to puppet-u

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

2013-05-05 Thread Larry Fast
What about the larger processes involved in incremental updates? Eg. sequencing your updates so that the service keeps running. I'm considering using Jenkins to orchestrate sequencial activity. -- You received this message because you are subscribed to the Google Groups "Puppet Users" grou

Re: [Puppet Users] New to hiera

2013-05-05 Thread Larry Fast
with my co-workers. Caveate Emptor: We're still hemming and hawwing about all this. Cheers, Larry Fast -- 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 an em

Re: [Puppet Users] What do YOU do to catch undefined variables

2013-05-03 Thread Larry Fast
...finger slipped... Thanks David, I started using geppetto as well. Yes, my error count has dropped significantly. The other thing I discovered is that hiera("name") produces a very clear error if the name doesn't exist. So I moving toward that as well. Cheers larry -- Yo

Re: [Puppet Users] What do YOU do to catch undefined variables

2013-05-03 Thread Larry Fast
On Friday, May 3, 2013 2:12:41 AM UTC-7, David Schmitt wrote: > > On 02.05.2013 22:43, Larry Fast wrote: > > I'm still a puppet newbie and these days I'm struggling with undefined > > variables. At least once a week I hit an error message like this: > >

[Puppet Users] Re: High-level design question concerning Hiera with Puppet

2013-05-02 Thread Larry Fast
module_name} - %{environment}/%{project}/%{role_name}-role/common - %{environment}/%{project}/%{module_name} - %{environment}/%{location}/%{module_name} - %{environment}/%{module_name} - %{environment}/common Cheers Larry Fast -- You received this message because you are subscrib

[Puppet Users] What do YOU do to catch undefined variables

2013-05-02 Thread Larry Fast
I'm still a puppet newbie and these days I'm struggling with undefined variables. At least once a week I hit an error message like this: Error: Failed to apply catalog: '' is not qualified and no path was specified. Please qualify the command or specify a path. IMO, the core issue is th

[Puppet Users] What's my syntax problem: "Could not match 'c:/tmp' " ?

2013-04-29 Thread Larry Fast
I assume I have a syntax problem of some kind. I created a class file and puppet complains on line 4. If I remove that block of code it complains about the next block. What silly little mistake have I made? The error reported for the code example below is: Could not match ‘george’, at

[Puppet Users] Re: How do I automagically remove old versions of jar files?

2013-04-29 Thread Larry Fast
Thank you all. Yes, tidy should be exactly what I need. -- 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 an email to puppet-users+unsubscr...@googlegroups.com. To post to th

[Puppet Users] How do I automagically remove old versions of jar files?

2013-04-24 Thread Larry Fast
I keep running into the following upgrade pattern. Previous Puppet run declared: file { "my_jar.1.2.3.jar": ... } New puppet run declares: file {"my_jar.2.4.6.jar": ... } But the new puppet run doesn't delete the older versions of this jar file. Is there a standard puppet pattern f

[Puppet Users] Re: multi-puppetmaster CA setup problem

2013-04-23 Thread Larry Fast
RESOLVED The multi-puppetmaster-single-CA documentation is complete but a bit scattered. Here the short list of what I needed to do for puppetmasters running apache-passenger. pm1 = CA pm2 = non-CA puppetmaster - needs to reference pm1 as the ca_server - disable local ca in [master] - get

[Puppet Users] multi-puppetmaster CA setup problem

2013-04-22 Thread Larry Fast
I'm getting errors when following this webpage to setup a second puppetmaster (pm2) while using pm1 as the CA: http://docs.puppetlabs.com/guides/scaling_multiple_masters.html#centralize-the-certificate-authority and I'm using option 1: Direct agent nodes to the CA Master As far as I can tell, i

Re: [Puppet Users] Windows Puppet waits for , then warns "Facter::Util::Resolution.exec with a shell built-in is deprecated"

2013-04-17 Thread Larry Fast
Solution: Find the .rb files that contained Facter::Util::Resolution.exec and ... Facter.add("my_function") do confine :kernel => [ 'Linux' , 'SunOS' , 'FreeBSD' , 'Darwin' ] ... Thanks everyone! -- You received this message because you are subscribed to the Google Groups "Puppet Users" g

Re: [Puppet Users] Windows Puppet waits for , then warns "Facter::Util::Resolution.exec with a shell built-in is deprecated"

2013-04-16 Thread Larry Fast
etter. The error did not indicate a source file. And Pluginsync does not indicate the source module for any of the files it loads. Not even in debug mode. Cheers, Larry Fast > > > -- You received this message because you are subscribed to the Google Groups "Puppet Users" gr

Re: [Puppet Users] Re: what's the syntax for converting the yaml of facts into a hash table?

2013-04-14 Thread Larry Fast
Oh yes, I forgot the first line of my snippet. But I still don't have a working syntax for reading the facts from that object. facts = File.read(filename) myFact = YAML.load( facts ) print myFacts.inspect > > # @ivars={"values"=>{"timezone"=>"UTC", "puppet_vardir"=>"/var/lib/puppet", > "m

[Puppet Users] Re: what's the syntax for converting the yaml of facts into a hash table?

2013-04-14 Thread Larry Fast
Starting to get some clarity but still need help. Using YAML to load Facts produces the YAML object below. But I'm still not clear on how to access the contents. myFacts = YAML.load( facts.yaml ) print myFacts.inspect ### output: #{"timezone"=>"UTC", "puppet_vardir"=>"/var/lib/puppet", "maca

[Puppet Users] what's the syntax for converting the yaml of facts into a hash table?

2013-04-13 Thread Larry Fast
Hope I'm not being too thick about this but I'm having trouble creating a Hash from my server's Facts. I've tried the following: facts = File.read( "#{puppetdir}/yaml/facts/#{certname}.yaml" ) factH = YAML.load( facts ) # fails factH = YAML.load( facts ).to_hash # fails I

Re: [Puppet Users] facter doesn't load from /ect/facter/facts.d

2013-04-13 Thread Larry Fast
Thanks Dan, I shall hunt down the elusive pixie dust! BTW, do you know where to look for a compatibility tree between stdlib and puppet version? Cheers, Larry On Sat, Apr 13, 2013 at 2:38 PM, Dan White wrote: > I can speak directly on this ! > > You want http://forge.puppetlabs.com/p

Re: [Puppet Users] facter doesn't load from /ect/facter/facts.d

2013-04-13 Thread Larry Fast
he first RC of facter 1.7. Do you know that stdlib has some answer to this problem or was it just a speculation? Thanks, Larry -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails fr

[Puppet Users] facter doesn't load from /ect/facter/facts.d

2013-04-13 Thread Larry Fast
I'm trying to load custom facts via /etc/facter/facts.d/* according to instructions on http://docs.puppetlabs.com/guides/custom_facts.html#structured-data-facts I must have missed a setting somewhere because I get nothing. The first clue may be that /etc/facter didn't exist. I had to create i

[Puppet Users] Can an ENC see the incoming environment value or other agent options? 3.0.1

2013-04-12 Thread Larry Fast
Using puppet 3.0.1, can exec ENC see the incoming environment value? Perhaps indirectly from a log or report somewhere? -- 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 an e

[Puppet Users] Windows Puppet waits for , then warns "Facter::Util::Resolution.exec with a shell built-in is deprecated"

2013-04-12 Thread Larry Fast
Windows NuBQ: I'm running windows with a clean install of puppet and an empty node definition. puppet agent -t pauses with no prompt. When I hit enter, I get this warning: Using Facter::Util::Resolution.exec with a shell built-in is deprecated. Most built-ins can be replaced with native ruby

[Puppet Users] Re: example42 mcollective - setting version produces an error

2013-04-10 Thread Larry Fast
I'm guessing that the problem is in example42/mcollective/manifests/init.pp... class mcollective ( $install_dependencies = params_lookup( 'install_dependencies' ), $stomp_host = params_lookup( 'stomp_host' ), $stomp_port = params_lookup( 'stomp_port' ), $stomp_user

[Puppet Users] example42 mcollective - setting version produces an error

2013-04-10 Thread Larry Fast
When I define the mcollective_version variable using hiera I get the following error. There is no indication where the problem has occurred. Error: Failed to apply catalog: You cannot specify more than one of content, source, target If I set this variable in code it pretents to work but I think

[Puppet Users] Re: What's your hiera tree look like?

2013-03-21 Thread Larry Fast
Hi Andy, I guess my most important request for Hiera 2 is diagnostic information. It's probably a broader request for better diagnostics in puppet as a whole. Here's what I dream of ... 1. The ability to run Puppet on the puppetmaster using the cached Facts from a server. 2. A postmortem (sorr

[Puppet Users] What's your hiera tree look like?

2013-03-19 Thread Larry Fast
My Hiera tree is turning into a chaotic mess. I'm guessing that my tree structure is one problem source. So I'm wondering how other real users have setup hiera. Here are the core problems that are giving me headaches. # I need to version control my modules separately but hiera data is monolithi

[Puppet Users] Can puppet report the console output from service foo status?

2013-03-01 Thread Larry Fast
I have an odd problem. The first time I install my new package, puppet comes back with "Execution of '/sbin/service chirp_fe start' returned 1:" When I run this command manually and on all subsequent puppet runs it succeeds. So I'm looking for a way to capture the console output from the in

[Puppet Users] Re: Official puppetlabs position on cron vs puppet as a service?

2011-10-07 Thread Larry Ludwig
Mostly stlll run as cron. Though for some instances we run as a daemon. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/itTFPtfZLocJ. To post to this group,

Re: [Puppet Users] Re: Puppet Class execution order

2011-06-15 Thread Larry Ludwig
Thanks Ken, Let me look further into the classes and see what's exactly happening. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/E0R0CzeeXwoJ. To post to

[Puppet Users] Re: Puppet Class execution order

2011-06-14 Thread Larry Ludwig
Sorry the typo: My examples should read: class { 'two': require => Class['one'] } class {'two: require => Exec['withinclassone'] } -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google

[Puppet Users] require vs include?

2011-06-14 Thread Larry Ludwig
On a related note to my last post, what is the difference between a require and an include of a class? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/9c4l

[Puppet Users] Puppet Class execution order

2011-06-14 Thread Larry Ludwig
For the life of me I'm not sure why this isn't working properly but Puppet appears to execute classes in the order it feels like, not how I'm specifying it within the language. I've tried the newer sytax Class['one'] -> Class['two'] Yet, I see Class two get executed first. I've also tried doi

[Puppet Users] How do you handle deleted nodes with exported resources in this situation?

2011-06-06 Thread Larry Ludwig
I have an issue where for a file type of an exported resource I must define as such: force=> false, replace => false, Meaning the file is created, but do not replace after it's added. I do this because of the app modifies the config file after (I know bad id

Re: [Puppet Users] Single and Double Quotes

2011-06-05 Thread Larry Ludwig
Bruce is correct. If you don't need double quotes, don't use them. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/TVNhOGVjTE9wSEFK. To post to this group,

[Puppet Users] parameterised classes via LDAP how?

2011-06-03 Thread Larry Ludwig
In 2.6 Puppet added parameterised classes, my question is it possible to call them via LDAP? If so how? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/Z3d

Re: [Puppet Users] finished, yet execution expired

2011-05-31 Thread Larry Ludwig
Actually upon further investigation it turned out to be an odd iptables firewall rule, unrelated to puppet. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from

Re: [Puppet Users] finished, yet execution expired

2011-05-27 Thread Larry Ludwig
In my case is also happening with 2.6.8. making async_storeconfigs=false Seemed to resolve the issue. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from th

Re: [Puppet Users] Concat Module posted to Onyx Point Github.

2011-05-25 Thread Larry Ludwig
Hi Trevor Thanks for the module. I've been testing out the concat module, thanks, but the only issue I see is files keep getting 'executed successfully' each round. Is there any way to not have it do this? I haven't really looked that your ruby logic yet. -- You received this message because

Re: [Puppet Users] Security of Puppet ACLs..

2011-05-13 Thread Larry Ludwig
It's from hostid command. How exactly is it generated I really don't know their info page is a bit vague. -- For example, here's what it prints on one system I use: $ hostid 1bac013d On that system, the 32-bit quantity happens to be closely related to the system's Internet a

Re: [Puppet Users] Security of Puppet ACLs..

2011-05-12 Thread Larry Ludwig
4) reference the file via the facter 'uniqueid' -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscr...@googleg

Re: [Puppet Users] best way of handling source installs

2011-03-01 Thread Larry Vaden
On Tue, Mar 1, 2011 at 5:34 PM, russell.fulton wrote: > Hi > > I have a number of apps that need to be installed from tarballs -- > simple tar -zxf; configure;  make install... > with a possible extra parameter to configure (usually prefix). > > There are no prepackaged versions of these available

[Puppet Users] Re: Fwd: New York City Puppet presentation Wednesday Nov 18th.

2009-11-15 Thread Larry Ludwig
register here:http://rsvp.nylug.org/ > > We should be getting together after the preso, if folks want to > exchange notes. (Likely at the TGI Fridays near the IBM Building where > the NYLUG meeting will be held). > > Announcement:http://www.nylug.org/home/index.shtml > > La

[Puppet Users] Re: Any ideas about this error with upgrading to 0.25.1?

2009-11-11 Thread Larry Ludwig
set the environment variable in the puppet.conf So I assume this is a completely different error. -L -- Larry Ludwig Empowering Media 1-866-792-0489 x600 Managed and Unmanaged Xen VPSes http://www.hostcube.com/ --~--~-~--~~~---~--~~ You received this mes

[Puppet Users] Re: Any ideas about this error with upgrading to 0.25.1?

2009-11-11 Thread Larry Ludwig
> > BTW, how do you tell the client to be in a particular environment? > > There is currently a bug report about this (ie environment can only be > > set on the client and not in external_nodes anymore). Which ticket # is it? Is it this one? http://projects.reductivelabs.com/issues/2748 having

[Puppet Users] Re: Any ideas about this error with upgrading to 0.25.1?

2009-11-11 Thread Larry Ludwig
Hi, > Could it be that one of your environment doesn't have network-config? Yes they do not. The 'development' env has newer code. > Could it be that in 0.25 the client is in this environment instead of > being in the one you think it is in? Checked LDAP config and it is in fact in the corre

[Puppet Users] Re: Any ideas about this error with upgrading to 0.25.1?

2009-11-11 Thread Larry Ludwig
Ticket opened: http://projects.reductivelabs.com/issues/2803 -L --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe

[Puppet Users] Re: Any ideas about this error with upgrading to 0.25.1?

2009-11-11 Thread Larry Ludwig
On Nov 11, 10:30 am, Brice Figureau wrote: > Hi Larry, > > I re-read the whole thread, and I might have been wrong. > > Your module files are indeed placed in network-config/files, correct? > Based on the error message (which mentions network-config/hosts) I > thought you

[Puppet Users] Re: Any ideas about this error with upgrading to 0.25.1?

2009-11-11 Thread Larry Ludwig
move the files under network-config/files/ Do you mean the subfolders below files? I did a test for one file and same result. > >   * open a redmine ticket so that we have a better error message, which > at least would give us the reason. Ok. -L -- Larr

[Puppet Users] Re: Any ideas about this error with upgrading to 0.25.1?

2009-11-10 Thread Larry Ludwig
in mind this node works as a 0.24.8 node and does not once I upgrade to 0.25.1 -L -- Larry Ludwig Empowering Media 1-866-792-0489 x600 Managed and Unmanaged Xen VPSes http://www.hostcube.com --~--~-~--~~~---~--~~ You received this message because you are subscribed

[Puppet Users] Re: Any ideas about this error with upgrading to 0.25.1?

2009-11-09 Thread Larry Ludwig
Could it be related the files folder I have has sub directories?? drwxr-xr-x 5 puppet puppet 4096 Apr 21 2009 . drwxr-x--- 4 puppet puppet 4096 Apr 7 2009 .. lrwxrwxrwx 1 root root 6 Apr 7 2009 CentOS -> RedHat drwxr-x--- 2 puppet puppet 4096 Apr 7 2009 Debian drwxr-x--- 2 pupp

[Puppet Users] Re: Any ideas about this error with upgrading to 0.25.1?

2009-11-07 Thread Larry Ludwig
(0.0.5) rubyforge (1.0.0) RubyRRDtool (0.6.0) sqlite3-ruby (1.2.5) sys-proctable (0.7.6) On Nov 6, 11:10 pm, James Turnbull wrote: > Larry > > I have a similar configuration to you and run 0.25.1 and don't see   > this issue. > > What passenger version? > > R

[Puppet Users] Re: What happens if puppet fails half way into processing a catalog?

2009-09-11 Thread Larry Ludwig
I think you are alluding to transactions. This feature does not exist currently in Puppet. -L -- Larry Ludwig Reductive Labs --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Puppet Users" group.

[Puppet Users] Re: passenger-status gives error but passenger is working fine

2009-09-11 Thread Larry Ludwig
Hmm I would double check your config files and maybe uninstall passenger and try again. -L -- Larry Ludwig Reductive Labs --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To po

[Puppet Users] Re: What happens if puppet fails half way into processing a catalog?

2009-09-11 Thread Larry Ludwig
I think you are alluding to transactions. This feature does not exist currently in Puppet. -L -- Larry Ludwig Reductive Labs --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Puppet Users" group.

[Puppet Users] Re: Puppetd downloading sourced file on *every* run

2009-09-10 Thread Larry Ludwig
On Sep 10, 2009, at 6:51 PM, Joshua Anderson wrote: > > > I was under the impression that puppetd would only download a file > if the local checksum didn't match the puppetmaster's checksum for > that file. Am I mistaken? > You are correct. -L --

[Puppet Users] Re: Puppetd downloading sourced file on *every* run

2009-09-10 Thread Larry Ludwig
Hmm can you send stats of the how big the file and how long compared from 0.24.8? I know we focused a lot of memory usage on the puppetmaster, and the amount of calls to the puppetmaster, but I don't know if we performed any performance testing. -L -- Larry Ludwig Reductive

[Puppet Users] Re: Puppet 0.25.0 release - EPEL?

2009-09-09 Thread Larry Ludwig
On Sep 8, 2009, at 7:37 PM, Todd Zullinger wrote: > Marziani, Michael wrote: >> Any idea how quickly we'll see this in EPEL? > > In addition to the link Larry posted for unofficial Fedora/EPEL > packages¹, I'd say we probably shouldn't rush this into the EPEL

[Puppet Users] Re: Puppet 0.25.0 release - EPEL?

2009-09-08 Thread Larry Ludwig
http://tmz.fedorapeople.org/repo/puppet/ -L -- Larry Ludwig Reductive Labs --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@google

[Puppet Users] Re: Puppet 0.25 migration

2009-09-08 Thread Larry Ludwig
hmm passenger 2.2.5 is released? hmm I'll have to test it out. -L -- Larry Ludwig Reductive Labs --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send

[Puppet Users] Re: migrating client between puppet servers

2009-09-08 Thread Larry Ludwig
the puppet code - SSL certs - node definitions The SSL certs it means moving the /var/lib/puppet/ssl folder (or whatever it's defined as) from the old puppetmaster to the new. -L -- Larry Ludwig Reductive Labs --~--~-~--~~~---~--~~ You received this message b

[Puppet Users] Re: Virtual recipe signals hardware nodes as 'openvz'

2009-09-08 Thread Larry Ludwig
o exists on the > hardware node. > > This has some bad side-effects as a hardware node should, for example, > have a NTP configuration, where a container should not. > > Regards, > If it's a bug open up a ticket here: http://projects

[Puppet Users] Re: upgrading from 0.24 to 0.25 from tar.gz

2009-09-08 Thread Larry Ludwig
tuff will still be hanging around. > > Thanks, > > Matt > Hi Matt, make sure you delete the old items in /usr/bin. They have been moved to /usr/sbin (ie puppetd) To be safe delete the entire puppet ruby library folder. -

[Puppet Users] Re: Security with mongrel

2009-09-04 Thread Larry Ludwig
On Sep 4, 2009, at 9:56 AM, Štefan Sakalík wrote: > > Larry Ludwig wrote: >> On Sep 3, 2009, at 6:46 AM, Štefan Sakalík wrote: >> >> >>> I'm using mongrel and these lines in apache config concern me (from >>> wiki/UsingMongrel): >>> SSLVer

[Puppet Users] Re: the same puppetmaster in different subnets/vlan

2009-09-04 Thread Larry Ludwig
Hi, The only way to do this is separate puppetmasters. SSL CA -> puppetmaster is a one to one relationship. Just curious why do you want separate certs? -L -- Larry Ludwig Reductive Labs --~--~-~--~~~---~--~~ You received this message because you

[Puppet Users] Re: Security with mongrel

2009-09-04 Thread Larry Ludwig
wed to connect with your puppetmaster if concerned about security. You can also disable the above option and only enable when adding new clients. -L -- Larry Ludwig Reductive Labs --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[Puppet Users] Re: some of the passenger processes not reloading manifests

2009-09-02 Thread Larry Ludwig
What version? Sounds like a bug to me to submit. -L -- Larry Ludwig Reductive Labs --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to pu

  1   2   3   >