Re: [Puppet Users] Re: How to Orchestrate State, such as use IPs of new systems for config other systems

2018-04-30 Thread Thomas Mueller
On 04/30/2018 06:29 PM, Joaquin Menchaca wrote: > For pure-cluster pattern, I have to deploy all at once first, then put > the config on all the systems.  For load balancer + web nodes, the > eventual convergence with puppetdb (poor person's service discovery) > would work, but clusters are all

Re: [Puppet Users] Re: Environment variable setting while using a module

2018-04-19 Thread Thomas Mueller
On 04/19/2018 02:21 PM, Ugo Bellavance wrote: > > > On Thursday, April 19, 2018 at 7:50:30 AM UTC-4, Thomas Müller wrote: > > Hi Ugo > > Am Freitag, 30. März 2018 17:27:28 UTC+2 schrieb Ugo Bellavance: > > Hi, > > I'm using the puppetlabs-postgresql module and it works

Re: [Puppet Users] Re: Encrypting password with custom provider

2016-11-08 Thread Thomas Mueller
Am 08.11.2016 um 20:10 schrieb Ziwi: > Thanks for the link, I will definitely look at this. If this actually > renders on agent it could come in handy. > > However different outputs of the encryption command are still a > problem, as there should be some kind of: onlyif => > decrypt('old_value')

Re: [Puppet Users] Re: Role vs hiera

2016-10-27 Thread Thomas Mueller
Am 27.10.2016 um 15:43 schrieb Ugo Bellavance: > That looks great, thanks! > > However, I just realized that my server roles are somewhat related to > the server names. For example, I could call my webservers something > like www1, www2, www3. If all those 3 servers have the same config, > is

Re: [Puppet Users] Certificate request does not match existing certificate

2011-04-19 Thread Thomas Mueller
Am Mon, 18 Apr 2011 14:28:57 -0700 schrieb Sylvain: Hello there, I have a problem while I'm trying to puppetize a client, I get this error: err: Could not request certificate: Certificate retrieval failed: Certificate request does not match existing certificate; run 'puppetca --clean

Re: [Puppet Users] Re: How to randomize a template

2011-01-05 Thread Thomas Mueller
Am Wed, 05 Jan 2011 04:59:29 -0800 schrieb Rune Stensø: For something that's a bit more generic, you can also just use $RANDOM with sleep. $RANDOM returns between 0 and 32k as a value, and you can use a divider to reduce it. For example, I use 'sleep $(($RANDOM/10)) do_heavy_stuff' to

Re: [Puppet Users] Use MySQL replication with stored configs

2010-12-23 Thread Thomas Mueller
Am Wed, 22 Dec 2010 22:02:27 +0200 schrieb Ohad Levy: Hi, Search the threads, there were a few discussions about this point... at the moment afaik, its not doable. it maybe could be done outside of puppet with mysql-proxy. rewriting/ redirecting SELECT and UPDATE/INSERT. - Thomas -- You

Re: [Puppet Users] Adding System Account

2010-03-30 Thread Thomas Mueller
Am Mon, 29 Mar 2010 18:23:04 -0300 schrieb Darvin Denmian: What option I need to use to create a system account with Puppet? Like the bellow command: useradd -r nagios -s /sbin/nologin -d /var/lib/nagios -m nagios Sorry for this newbie question, I'm new in Puppet configuration :)

Re: [Puppet Users] Failed to retrieve current state of resource messages

2010-03-24 Thread Thomas Mueller
Am Tue, 23 Mar 2010 22:42:57 -0400 schrieb Kent Rankin: I've made no changes, so I'm assuming that it's webrick. Would this impact that? had this error too. try to go on with mongrel or passenger. webrick's intended use is for development and is not optimized for real production. - Thomas