[Puppet Users] Upgrading puppet on servers with NOOP

2020-05-12 Thread Robert DeMay
Trying to upgrade puppet on services with NOOP. Do not want to disable NOOP, but want puppet to continue gathering FACTS about the server. How can I do this without turning off NOOP. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubsc

Re: [Puppet Users] eyaml edit ending strangly

2019-04-30 Thread Robert
Hi, it's probably a copy&paste error but [hiera-eyaml-core] cannot load such file -- hiera/backend/eyaml/encryptors/pk*s7* vs. hiera/backend/eyaml/encryptors/pk*cs7*.rb You don't have a typo in some config, do you? Best Rp On Mon, Apr 29, 2019 at 10:42 PM Peter Berghold wrote: > I had in

[Puppet Users] Re: New location for inactive Puppet documentation

2019-03-14 Thread Robert Inder
On Friday, 15 February 2019 21:45:00 UTC, Michelle Fredette wrote: > > We regret any disruption that this change causes, and if you’re having > trouble finding something you need, please email d...@puppet.com > and we will help you find it. > Except that when I DID email to d...@puppet.com i

Re: [Puppet Users] Replacing extlookup to look up external things!

2019-02-05 Thread Robert Inder
again once we've moved properly to Puppet 6. Robert. -- 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...@googleg

Re: [Puppet Users] Replacing extlookup to look up external things!

2019-02-05 Thread Robert Inder
ful. Now all I have to do is get the mailalias module installing and working! Robert. -- 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+un

[Puppet Users] Replacing extlookup to look up external things!

2019-01-29 Thread Robert Inder
place this? Can someone point me at an example of the simplest possible external lookup? Robert. -- 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

Re: [Puppet Users] is it possible to inherit parameters in hieradata

2018-06-09 Thread Robert
Yes. https://puppet.com/docs/puppet/5.0/hiera_merging.html#hash So you could use a "logrotate::rules::defaults" hash and only specify the differences, then use hash (or maybe deep) merge strategy. Best, Rp On Fri, Jun 8, 2018 at 11:55 PM Priyo Phan wrote: > I am configuring logrotate and was

Re: [Puppet Users] Re: Hiera brainstorming

2018-05-07 Thread Robert
, I'd prefer something we have already. Not that I'm completely against any change to the setup - of course we evaluated reviews at the beginning, but I see our actual setup as an improvement over that, at least in our particular case. Thanks, Rp On Mon, May 7, 2018 at 3:25 PM Thomas Müll

[Puppet Users] Hiera brainstorming

2018-05-06 Thread Robert
Hi List, I invite you to a bit of brain-workout ;) I couldn't figure this out on my own so far. At our company we have a group of linux-admins who are responsible for the infrastructure (the hardware and the operating system) and we have application teams, like the database admins or a team for t

Re: [Puppet Users] master+agent setup on vms with proxy

2018-04-16 Thread Robert
Hello, have you tried the usual settings? export http_proxy="http://your.proxy.server:8080"; export https_proxy="http://your.proxy.server:8080"; This should work; if not, this: https://www.jonathanmedd.net/2013/10/configuring-puppet-conf-to-support-a-proxy-server.html says you can specify http_p

Re: [Puppet Users] Performance issue with puppetserver

2017-12-13 Thread Robert
Hey, Do you manage directories using recursive => true? > A good question indeed - I don't recommend recurse => true, it needs a LOT of time and memory from a given number of files (no idea how much exactly). We had two servers with a similar role, but different environment, the one had like 20GB

Re: [Puppet Users] Re: stdlib keys() and values()

2017-09-28 Thread Robert
Hey John, I've just found out that notice() gives back the array indeed. Thanks for clarifying that, I didn't know this until now and was really confused :) Best, Rp On Thu, Sep 28, 2017 at 3:02 PM, jcbollinger wrote: > > > On Thursday, September 28, 2017 at 5:49:12 AM

[Puppet Users] Re: stdlib keys() and values()

2017-09-28 Thread Robert
Eh, sorry. So why's this with the above code: Notice: /Stage[main]/Main/Notify[sdf]/message: defined 'message' as '1' and keys($hash) gives 'a' Why not arrays of the keys / values? Can't understand. Thanks Rp On Thu, Sep 28, 2017 at 12:44 PM, Robert

[Puppet Users] stdlib keys() and values()

2017-09-28 Thread Robert
Hello List, I can't think of a more basic question, but... $hash = {'a'=>1, 'b'=>2, 'c'=>3} notify { "sdf": message => values($hash), } -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emai

[Puppet Users] Can I find out about another node?

2017-07-05 Thread Robert Inder
which other node also has an instance of OurSystem for "Edinburgh"? Robert. -- 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-

Re: [Puppet Users] Puppet works on 41 times out of 43. Help?

2017-06-22 Thread Robert Inder
On 22 June 2017 at 14:42, jcbollinger wrote: > > > On Thursday, June 22, 2017 at 5:26:41 AM UTC-5, Robert Inder wrote: > > I don't understand why the behavior you describe occurs, but I also don't > understand why you are trying to set the owner of the link in the

Re: [Puppet Users] Puppet works on 41 times out of 43. Help?

2017-06-22 Thread Robert Inder
3 is EOL. > If the issue is with puppet itself, rather than perms, it's going to > require an upgrade to fix. > Well, an upgrade MIGHT fix it But I guess that upgrading is something I'm going to have to think about some time... Unlikely, but wanted to make sure

[Puppet Users] Puppet works on 41 times out of 43. Help?

2017-06-21 Thread Robert Inder
rmissions. "WTF?", as they say. Any suggestions how to start tracking this down? Robert. -- 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

Re: [Puppet Users] Re: Specifying dependency ordering inside of lambda functions

2017-02-21 Thread Robert
Hi Joshua, As you can see I can't put a "before => User['resource_name']" in the group > resource, because each user resource is dynamic. What is the recommended > approach in this situation? I just want to make sure that all the groups > are created before the users are created. > I didn't tried

Re: [Puppet Users] Help with data structure

2017-02-05 Thread Robert
Hi Jonathan, this erb template: members=<% @members.each_pair do |key, value| -%> <%= key -%>;<%= value['service'] -%>;<%= value['opt'] -%>,<% end -%> gives you exactly the parameter you mentioned. So if you define the variable $members in the pp file and a file resource with content => templat

Re: [Puppet Users] Re: how do you name and group your data in hiera?

2017-01-30 Thread Robert
ALL' > > On almost every node, profile::base::linux::sudo_confs has a single key > 'sysadmin'. On nodes with the `puppet_role` fact set to `build`, there's a > second key, `infrastructure`, and thus a second sudo configuration is > applied on those nodes. You

Re: [Puppet Users] Re: r10k, git and .gitignore

2017-01-27 Thread Robert
Hey guys, I just wanted to give you a follow-up on this topic (maybe somebody will have the same question in the future). All ideas have been helpful but fpm is awesome :) I now build rpm's from software which do need dependencies, pre/post(un)install scripts etc., but if there's no need for tha

[Puppet Users] how do you name and group your data in hiera?

2017-01-27 Thread Robert
Hi List, I'm on the verge of refactoring all our modules to the roles&profile workflow with r10k etc. and the stuff is taking shape - thanks for all the help so far! - and the only thing I'm still not very convenient with is the naming/grouping of data put into Hiera and using that data in the pro

Re: [Puppet Users] A coding question about PE

2017-01-26 Thread Robert
Hi Peter, On Thu, Jan 26, 2017 at 4:17 PM, Peter Berghold wrote: > What I'd like to know is if there is a programatic way either in pure > Puppet manifest code or through a custom function for a Puppet module to be > "self aware" enough to know the full path of where it is installed? > > For ins

[Puppet Users] r10k, git and .gitignore

2016-12-14 Thread Robert
Hello List, I finally managed to migrate our Puppet Master from the standard, simple setup to a bit more advanced configuration with r10k and a Bitbucket server. I converted all our modules into git repositories (one module per repo), stored them in Bitbucket and configured r10k to deploy the who

Re: [Puppet Users] development workflow

2016-11-07 Thread Robert
g in a 3rd party service like bitbucket. > > Some workflow related features (eg mandating a minimum number of approvals > on a merge request before it being accepted) are only available in the > enterprise edition, but you can get a lng way with the free version. > > -Paul > &g

[Puppet Users] development workflow

2016-11-07 Thread Robert
Dear List, Puppet started out as a PoC for us, to see if it's worth the investment in time and energy. The answer is definitely yes, and we'd like to take some sort of next step. Which would be cooperation with smaller teams, versioning & review of code and stuff. So I'd like to hear your though

RE: [Puppet Users] R10K in an existing infrastructure OR How to write yourself into a corner.

2016-09-29 Thread Robert Davidson
That would be messy, given the Very Interesting way in things are separated, network-wise. It's probably a better long-term solution, but in the short term, setting up a data or config module and making r10K track it by branch looks to be the most viable solution. -- Robert Dav

RE: [Puppet Users] R10K in an existing infrastructure OR How to write yourself into a corner.

2016-09-28 Thread Robert Davidson
e a better way to do this, though. -- Robert Davidson > -Original Message- > From: puppet-users@googlegroups.com [mailto:puppet- > us...@googlegroups.com] On Behalf Of Rob Nelson > Sent: Tuesday, September 27, 2016 4:52 PM > To: puppet-users@googlegroups.com > Subj

[Puppet Users] R10K in an existing infrastructure OR How to write yourself into a corner.

2016-09-27 Thread Robert Davidson
nments. But these config files need to change rapidly, and would result in ridiculous version creep if we increment every time we had to adjust one of them. What is a good way to deal with data files like this (ones where putting the contents into hiera is not really viable)? How do I treat

Re: [Puppet Users] "extending" hiera data?

2016-08-13 Thread Robert Poulson
e breaking out all > your logic into profile modules can be quite verbose and time-consuming. > Sometimes you will get a profile class that does nothing but install a > single package (e.g. if you have multiple profiles that require a single > Apache module). That's OK. It will be MUCH

[Puppet Users] "extending" hiera data?

2016-08-11 Thread Robert Poulson
Hey List, during the last weeks I finally managed to spend some quality time :) with Puppet and I deepened my knowledge a bit: learned some ruby, wrote my first custom ruby facts, used hiera in my latest module... it's been fun. There is one concept with Hiera though which is still unclear for me

Re: [Puppet Users] Re: Puppet .... ruby regex

2016-08-04 Thread Robert Poulson
> > $pp_shortcertname= "${trusted['certname']}".match(/([^.]+)\./)[1] > > not sure I fully understand why this works and [] doesn't. > > Not 100% sure I understand what the [1] does ! > The parentheses are for capturing the matching text, and \1 for re-using it as a backreference; [1] outside of t

Re: [Puppet Users] Puppet module and Hiera variable access

2016-07-19 Thread Robert Story
class with the TK> priority lookup without having to use hiera(...)? Try making it a parameter: class qmonitoring::db ( $icinga2_ido_password = 'default' ) { ... Robert -- Senior Software Engineer @ Parsons -- You received this message because you are subscribed to the Google

Re: [Puppet Users] merge hashes and create_resources

2016-06-06 Thread Robert Poulson
7; }, > [possibly input4... inputN] > } > $input_merged = merge($input_base, $input_node) > file { 'input_merged_file': > content => template("template_that_uses_input_merged") > } > > #Uses $port and $component params in individual File resources > define inp

[Puppet Users] merge hashes and create_resources

2016-06-05 Thread Robert Poulson
Dear List, I've been using Puppet for over a year now and I'm quite enjoying it. I've learned some stuff but there is of course always room for improvement. Now I have a task which needs a nicer solution than I'm currently capable of. I have a hash of items with to key/value pairs, which is *the

[Puppet Users] puppet enterprise code manager issue

2016-05-12 Thread Robert Chen
my environment needs http_proxy, https_proxy for modules. probably code manager issue is an proxy issue # puppet-code deploy lab -l debug --wait 2016-05-12 13:39:48.388674 DEBUG puppetlabs.puppet-code - Loaded global configuration from /etc/puppetlabs/client-tools/puppet-code.conf 2016-0

[Puppet Users] Please Confirm: Puppet Directory Environments can not be named "master" ?

2016-03-22 Thread &#x27;Robert Heinzmann' via Puppet Users
someone seen this issue yet ?? Using "prefix: true" on r10k should fix the issue and generate unique environment names. Also renaming all git branches should solve the issue. However I would like to know if this issue is known and if it still exists on Puppet 4.0 ? Regards, Rober

RE: [Puppet Users] Catalog compilation weirdness

2016-02-28 Thread Robert Davidson
x27;t doing what it said on the tin - I'm not sure why, or if I should even report this as a bug to the puppet-keystone devs. That looks like a valid bit of puppetry to me, and I have no idea why it wasn't working on our setup. -- Robert Davidson > -Original Message--

[Puppet Users] Catalog compilation weirdness

2016-02-28 Thread Robert Davidson
is. As I'm trying to debug modules written by someone else, this is Not Helpful. Turning on debug output on the puppet master doesn't give me anything I can use either - is there some way to force it to spit out where this relationship problem is actually happening? -- Robert Davi

[Puppet Users] Puppetdb and multiple puppetmasters

2016-02-27 Thread Robert Davidson
x27;replace facts' command for $HOSTNAME to PuppetDB at $PUPPETDBHOSTNAME:8081: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed: [unable to get local issuer certificate for /CN=$PUPPETDBHOSTNAME] What incredibly obvious thing have I overlo

[Puppet Users] how to generate puppet modules or manifests files according to different groups of servers dynamically?

2015-10-14 Thread Robert Chen
...? Anyone has this experience or please share your idea. thanks, Robert -- 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...@google

[Puppet Users] install_options with package in windows

2015-08-20 Thread Robert
Have you tried splitting keys and values? install_options => ['/components', 'vda,plugins', '/controllers', 'mydev.example.com', '/enable_hdx_ports', '/optimize', '/enable_remote_assistance', '/virtualmachine', '/nodesktopexperience', '/noreboot'], -- You received this message because you ar

[Puppet Users] allow_duplicate_certs doesn't work?

2015-08-18 Thread Robert Hafner
I'm using allow_duplicate_certs as our cluster occasionally reuses hostnames- except that it appears that this setting does nothing at all? I'm assuming I'm missing something here, but whenever a freshly-wiped host attempts to connect to the cluster I get an error-> > "Could not request certif

Re: [Puppet Users] Re: puppetdb - getting a list of specific facts for specific hosts?

2015-08-12 Thread robert keating
Can you help with this query? I am trying to get 2 facts from all of our puppet clients in PuppetDB. I tried variations of the following, but no luck: ('["or", ["=", "name", "kernelversion"], ["=", "name", "instance_uuid"]]') Thank you! On Tuesday, September 3, 2013 at 11:09:19 AM UTC-7, Ken

RE: [Puppet Users] Re: Array of tags not applying to resource

2015-08-07 Thread Robert Davidson
just get bitbucketed? I don't see anything in the Puppet 4 docs that would indicate it's behavior has changed, though. -- Robert Davidson > -Original Message- > From: puppet-users@googlegroups.com [mailto:puppet- > us...@googlegroups.com] On Behalf Of jcbollinger &g

[Puppet Users] Array of tags not applying to resource

2015-08-06 Thread Robert Davidson
else complaining about this, and something that is so contrary to what the documentation says would surely have hit someone else before now! -- Robert Davidson -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from

[Puppet Users] Launchd service is unloaded instead of refreshing

2015-07-29 Thread Pascal Robert
Hi, We use Puppet for many things, including managing the Nagios client (NRPE) on OS X and Linux. I have a weird issue where on OS X, when Puppet should refresh the service because of a configuration file change, well it unload the service instead :-/ Relevant config: $nrpe_config_file = $

[Puppet Users] Virtual resources, collectors, and overrides.

2015-07-17 Thread Robert Davidson
this even possible? I haven't found a way yet. -- Robert Davidson -- 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...@googl

RE: [Puppet Users] Stupid hiera.yaml wildcard question.

2015-06-02 Thread Robert Davidson
e local Puppet variables in Hiera’s hierarchy or data sources. Only use facts and ENC-set top-scope variables." Led me to discard them as useful in constructing a hiera.yaml hierarchy. From your response (and the replies from Craig and John) it appears that I was incorrect to do so. Thanks! --

RE: [Puppet Users] Stupid hiera.yaml wildcard question.

2015-06-01 Thread Robert Davidson
r between different modules when setting the assorted defaults. Unless there's a dead simple way to set a fact that will load a a yaml associated with each assigned class, which would make everything so much easier. . . -- Robert Davidson -- You received this message because you ar

[Puppet Users] Stupid hiera.yaml wildcard question.

2015-06-01 Thread Robert Davidson
want to do that I'm sure I'm missing something. -- Robert Davidson -- 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+un

Re: [Puppet Users] Re: puppetdb module fails to install or work with fresh node

2015-05-28 Thread Robert Hafner
I figured out the issue with the embedded database. For some reason letting the system default to ::cert for the “ssl_listen_address” had it binding to localhost instead of the actual interface it should have. Specifying “0.0.0.0” for that option made puppetdb work just fine when using the embe

Re: [Puppet Users] Re: puppetdb module fails to install or work with fresh node

2015-05-28 Thread Robert Hafner
? It’s hard to imagine a more simple setup than the one I have right here, but this module is not working or giving me any reasons why it’s not working. PuppetDB is just failing completely, and with all the default settings. Rob > On May 28, 2015, at 12:43 PM, Robert Hafner wrote: > >

[Puppet Users] Re: puppetdb module fails to install or work with fresh node

2015-05-28 Thread Robert Hafner
On Thursday, May 28, 2015 at 12:31:29 PM UTC-7, Robert Hafner wrote: > > > I'm creating a puppetdb machine using puppetdb module. My code is simple: > > > class profiles::puppetdb { > > class { '::puppetdb': > > > > } > > }

[Puppet Users] puppetdb module fails to install or work with fresh node

2015-05-28 Thread Robert Hafner
puppetdb@localhost:5432/puppetdb]/unless: Check "/usr/local/bin/validate_postgresql_connection.sh 2 10 '/usr/bin/psql --tuples-only --quiet -h localhost -U puppetdb -p 5432 --dbname puppetdb '" exceeded timeout I'm a bit at a loss as to what to do here, as there'

[Puppet Users] how to list all classes deployed/running on a puppet agent?

2015-04-16 Thread Robert Chen
how to list all classes deployed/running on a puppet agent? how to get all running puppet agent/IP addresses managed by the master? ( the puppet cert list --all list all certs which does not mean an agent is running). -- You received this message because you are subscribed to the Google Group

Re: [Puppet Users] Re: How can I diagnose hopeless performance.

2015-03-22 Thread Robert Inder
On Saturday, 21 March 2015 22:08:34 UTC, Christopher Wood wrote: > > On Sat, Mar 21, 2015 at 12:08:07PM -0700, Robert Inder wrote: > : : > >This is not quite the behaviour I want. > > > >But how can I stop it? > > In your place I'd pro

[Puppet Users] Re: How can I diagnose hopeless performance.

2015-03-21 Thread Robert Inder
On Friday, 20 March 2015 08:18:15 UTC, jamese wrote: > > Try running puppet with "--debug" and "--evaltrace" to see where it's > taking the time. > Ah! As before, the evaltrace for the empty node definition lists a handful of things being evaluated in negligible times. But that out put is b

[Puppet Users] How can I diagnose hopeless performance.

2015-03-19 Thread Robert Inder
est -f '${shell}'" } is being logged as Error: Command exceeded timeout Wrapped exception: execution expired Error: /Stage[main]/Users::Ii::Virtual/Users::Developer[robert]/Users:: Account[robert]/Exec[check /bin/bash exists for robert]/returns: change from notrun to 0 failed: Command

[Puppet Users] who updated my puppet.conf on puppet master

2015-03-16 Thread Robert Chen
I installed a puppetdb with puppet master. I need to add dns_alt_names = puppet.mydomain.com,puppet to make it works or else a lot of errors like: Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Attempt to assign to a reserved variable but my /etc/puppet/puppet.con

Re: [Puppet Users] ntp keys - trusted, requestkeys

2015-03-10 Thread Robert Poulson
> > So the ntp.conf should only contain the key identifiers pointing at the > /etc/ntp.keys which won't be changed by Puppet. > Okay, it works exactly like this. I misinterpreted the description, one has to specify the key identifiers - was misleading but probably it's just me. So I can't edit t

[Puppet Users] Re: facter error esolved to an invalid value

2015-02-11 Thread Robert Reilly
Tried upgrading facter on that node, but same error ... On Wednesday, February 11, 2015 at 8:04:18 AM UTC-5, Robert Reilly wrote: > > All, I am getting the following problem with facter on 5 of my nodes, > Fact resolution fact='enviro', resolution='' resolved to

[Puppet Users] facter error esolved to an invalid value

2015-02-11 Thread Robert Reilly
All, I am getting the following problem with facter on 5 of my nodes, Fact resolution fact='enviro', resolution='' resolved to an invalid value: Expected (?-mix:xxx(vs|sv).{2,7}\d{1,2}) to be one of [Integer, Float, TrueClass, FalseClass, NilClass, String, Array, Hash], but was Regexp, this seem

[Puppet Users] Virtual users and group gids

2014-09-22 Thread Robert Davidson
y easy way to define "If this group is created, use this gid" in puppet. Am I missing something? -- Robert Davidson -- 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] user authentication with proxyserver

2014-07-18 Thread robert api
, but i may need to configure a user authentication for some nodes, to be able to access to internet and communicate with my puppetmaster. any idea how i would achieve that or is such a feature not implemented yet? i cant seem to find google hits for my searches. greetings Robert -- You

[Puppet Users] where to configure proxy settings

2014-07-03 Thread robert api
be much appreciated greetings robert -- 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 view this discussion on th

[Puppet Users] future parser changes undef to string inside create_resources (tested on puppet 3.5.1 and puppet 3.6.1)

2014-06-01 Thread Robert
I've stumbled upon this very annoying bug with the future parser where it's replacing undef with empty strings when passed inside a hash to create_resources(). test.pp = define test($var = undef) { notice inline_template("<%= @name %> is <% if @var %>true<% else %>false<% end %> and o

[Puppet Users] Re: Puppet and Mcollective yaml file changing when it shouldn't

2014-05-13 Thread Robert Reilly
ruby version 1.8.7... On Tuesday, May 13, 2014 1:00:05 PM UTC-4, Robert Reilly wrote: > > All, I found this post as I was having the same issue. I added the > template and the first run it buckets the file because it is once again > changed but not the second time, the third tim

[Puppet Users] Re: Puppet and Mcollective yaml file changing when it shouldn't

2014-05-13 Thread Robert Reilly
lib/puppet/bucket/1 Thanks ! Robert -- 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 view this discu

[Puppet Users] Re: bucketing all changed files

2014-04-22 Thread Robert Reilly
Thanks for the reply, That is the conclusion i came to but did not want to reinvent if it already existed. I like the fs snapshot idea, i will look into that further. Thanks ! Robert On Tuesday, April 22, 2014 9:05:05 AM UTC-4, jcbollinger wrote: > > > > On Monday, April 21, 2014 4:

[Puppet Users] bucketing all changed files

2014-04-21 Thread Robert Reilly
could check the files into a revisioning system. Thanks ! Robert -- 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.co

[Puppet Users] bucketing all changed files

2014-04-21 Thread Robert Reilly
Hi All, I want to be able to bucket any file that is being changed including the /etc/passwd and shadow for user changes, I see this is not the default behavior .It would be awesome to use something like git or svn to keep track of changed files. thanks for any help Robert -- You received

Re: [Puppet Users] Re: Remove certificate requests

2014-03-11 Thread robert . buchholz
only cleans signed certificates, not requests. > > I think this is actually a bug, has any one reported it on the issue > tracking system yet? > > 'puppet cert clean' used to work to clean unsigned certificates in > puppet 2.7, but no longer does in 3.0 > I c

[Puppet Users] Re: Puppet Dashboard believes a node is unresponsive

2014-03-03 Thread Robert Rothenberg
Could this be due to this bug? http://projects.puppetlabs.com/issues/8603 On Monday, March 3, 2014 4:04:56 PM UTC, Robert Rothenberg wrote: > > Puppet Dashboard is listing a node as unresponsive for several days. But > the agent has been running twice an hour with no errors, and a m

[Puppet Users] Puppet Dashboard believes a node is unresponsive

2014-03-03 Thread Robert Rothenberg
Puppet Dashboard is listing a node as unresponsive for several days. But the agent has been running twice an hour with no errors, and a manual run of the agent shows it runs fine. I cannot ping it with mcollective, and a query for disabled agents doesn't list it. I looked in the logs on the no

Re: [Puppet Users] How to force a puppet service to restart - Not restarting automatically when config is initially updated.

2014-03-01 Thread Robert Shady
ode ? > It can maybe show you what might be missing. > > On Feb 22, 2014, at 10:35 PM, Robert Shady > > wrote: > > (I posted this yesterday, but for some reason it never showed up)... > > First off, master & agent are Debian Linux boxes running Wheezy (Debian > 7.4

[Puppet Users] Provider macports is not functional on this host error

2014-02-26 Thread Pascal Robert
Hi, I'm working on our first Puppet deployment, and one of the things we want to install is the NRPE (Nagios agent) on our CentOS, Ubuntu and OS X boxes. The problem is: MacPorts don't get installs, and I get: Error: /Stage[main]/Nagios/Package[${nagios_plugins}]: Provider macports is not func

[Puppet Users] How to force a puppet service to restart - Not restarting automatically when config is initially updated.

2014-02-22 Thread Robert Shady
(I posted this yesterday, but for some reason it never showed up)... First off, master & agent are Debian Linux boxes running Wheezy (Debian 7.4). Puppet Master and Agent are V3.4.3 So here's the deal.. I'm trying to install PowerDNS recursor on my agent with a custom configure file (/etc/powerd

[Puppet Users] How do I see a catalog from local manifests?

2014-02-14 Thread Robert Inder
puppet-catalog will do it, but there is no relevant example, and I can't actually get it to do anything useful. Help? Robert -- 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: Nagios default files being overwritten

2014-02-11 Thread Pascal Robert
Hum. Since I only want to override 3 definitions, I think I'm simply going to stop using them. Le mardi 11 février 2014 09:53:42 UTC-5, druide...@gmail.com a écrit : > > Hi, > > I have a strange problem here. Most of my Nagios configuration are from > file {} directive, but I also need to modify

[Puppet Users] Re: Include class if package exists

2014-02-11 Thread Pascal Robert
uppet where you want to > conditionally order something al you need are the > require/before/notify/subscribe parameters. > > > On Monday, 10 February 2014 23:20:06 UTC+1, Pascal Robert wrote: >> >> Hi, >> >> I'm using Puppet for the first time, and for my t

[Puppet Users] Include class if package exists

2014-02-10 Thread Pascal Robert
Hi, I'm using Puppet for the first time, and for my tests, I'm recreating our Nagios setup into a Puppet modules. It works at 95%, but I do have a problem: my module include files but I also need to modify a couple of Nagios configuration files that comes with the Nagios RPM package. Example:

Re: [Puppet Users] puppet user context

2014-01-29 Thread Robert Turk
Am 29.01.14 10:05, schrieb José Luis Ledesma: Could you try adding the "full path" Thanks for your help. Using "${wallpaper_plist::plist_name}" does the trick. :) Robert -- You received this message because you are subscribed to the Google Groups "Puppet Users&qu

Re: [Puppet Users] puppet user context

2014-01-29 Thread Robert Turk
use a static filename instead of the $plist_name variable and it worked. But using a notify outside the defined resource works and gets me the correct value for the variable $plist_name... So why is it not working? Is it an other scope or namespace? Robert -- You received this message because

Re: [Puppet Users] puppet user context

2014-01-28 Thread Robert Turk
Am 20.01.14 09:02, schrieb Robert Turk: You can get list of directories under /Users from facter and then build an array out of it and use this in your manifest. I tested your solution and here is what I have done: I created a custom fact which returns a list of directories under /Users

Re: [Puppet Users] puppet user context

2014-01-20 Thread Robert Turk
Am 17.01.14 11:43, schrieb Andrey Kozichev: You can get list of directories under /Users from facter and then build an array out of it and use this in your manifest. Thanks for your help. I will try this... Robert -- You received this message because you are subscribed to the Google Groups

Re: [Puppet Users] puppet user context

2014-01-17 Thread Robert Turk
Users" folder and place the files into every user's home folder I can find. Robert -- 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

Re: [Puppet Users] puppet user context

2014-01-16 Thread Robert Turk
return logged in users and use it in your manifest. Do you mean building a custom fact for this value? Robert -- 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

[Puppet Users] puppet user context

2014-01-16 Thread Robert Turk
ensure => file, } For this manifest you need root access and you have to know the current logged in user. But the fact $id is, of course, "root" because I have to run this manifest as root. So how can I get the current logged in user as a variable? Thanks in advance. Kind r

[Puppet Users] puppet-dashboard cert::create_key_pair and cert::request fails

2013-10-14 Thread Robert Schaffar-Taurok
ster common scripts Debian Version: wheezy Thanks in advance for any help, Robert -- 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...

[Puppet Users] Puppet fails on aws instance using ruby19 yum install

2013-10-07 Thread Robert Logan
I've been trying to use the ruby19 and rubygems19 packages from amazons yum repo but cant get around this issue: [root@ip-10-234-225-44 ~]# puppetd --test /usr/share/rubygems1.9/rubygems/custom_require.rb:36:in `require': cannot load such file -- puppet/application/agent (LoadError) fro

[Puppet Users] Re: error on puppet master after update to 3.3.0

2013-09-13 Thread Robert Rolfe
It's not just you, I am working on the exact same problem. 2.7.20 agents running against a 3.3.0 master and getting the same errors. It looks like all of the agents are getting and applying the configurations properly, however the reports they are sending back are not acceptable to the master.

Re: [Puppet Users] "puppet module install simondean/iis" gives error "Error: cert already in hash table"

2013-08-19 Thread Robert Redgwell
For what it's worth, I had the same problem and figured out the particular cert on Windows 7 (64bit) that was causing the issue: -- [Subject] CN=Thawte Timestamping CA, OU=Thawte Certification, O=Thawte, L=

[Puppet Users] Re: PUPPETDB and pgpool II

2013-07-17 Thread Robert Bachmann
d to read kind from frontend. frontend abnormally exited 2013-07-17 13:01:28 LOG: pid 1188: ProcessFrontendResponse: failed to read kind from frontend. frontend abnormally exited On Friday, July 12, 2013 1:32:34 PM UTC-4, Robert Bachmann wrote: > I am trying to set up puppet in an HA envi

Re: [Puppet Users] PUPPETDB and pgpool II

2013-07-15 Thread Robert Bachmann
t helps). > > Have you been able to get pgpool working fine using other PostgreSQL > clients yet? > > On Fri, Jul 12, 2013 at 6:32 PM, Robert Bachmann > > > wrote: > > I am trying to set up puppet in an HA environment using pgpool to > connect to > > the

[Puppet Users] Re: Purged packages cause servers to always list as "changed" in Dashboard

2013-07-12 Thread Robert Esser
purged'; } Although the ensure parameter doesn't do anything in this case, it was left in so that any instances of "purge_pkg" can simply be renamed back to "package" if/when this issue is ever resolved. -Robert On Thursday, July 11, 2013 9:57:14 PM UTC-7, Kim S

[Puppet Users] PUPPETDB and pgpool II

2013-07-12 Thread Robert Bachmann
I am trying to set up puppet in an HA environment using pgpool to connect to the postgres DB and I get this kind of thing in the pgpool log any ideas? 2013-07-12 11:56:45 LOG: pid 12275: DB node id: 1 backend pid: 732 statement: DISCARD ALL 2013-07-12 11:57:47 LOG: pid 1: connection rec

[Puppet Users] Failed to set owner to: integer too big to convert to `int'

2013-05-20 Thread Robert Gregory
When trying to execute the code bellow I get this error: err: /Stage[main]//Node[ftp.example.com]/Addclient[uniqueID]/File[/PATH/inbox]/owner: change from 2279892064 to 2279892064 failed: Failed to set owner to '2279892064': integer 2279892064 too big to convert to `int' This code works for a

Re: [Puppet Users] Re: High Availability of Puppet server for separate geographical location

2013-05-08 Thread Robert van Veelen
-- Sent from my HP VeerOn May 8, 2013 19:58, John Warburton wrote: On 9 May 2013 05:57, Felipe Salum wrote: Is Puppetlabs planning some easy solution for this ?I run 12 puppet servers around the world. They work in a multiple puppet master solution where any client from any loc

  1   2   >