[Puppet Users] Creating a user without a shadow entry

2017-07-24 Thread William Korb
Hello fellow Puppeteers and thanks in advance for any assistance you may be able to offer. We have a rather non-standard requirement on our Puppet-managed Linux systems, and I'm trying to figure out if/how Puppet can satisfy it. We use some of our servers to run Oracle database software. If you

Re: [Puppet Users] Re: Puppet certification issue

2017-07-24 Thread Michael Smith
Puppet uses application-level authentication, not server-level, so a client certificate is not required to connect to the server. Some details about this are documented at https://docs.puppet.com/puppet/5.0/config_file_auth.html and https://docs.puppet.com/puppetserver/5.0/config_file_auth.html.

Re: [Puppet Users] How to randomize the order of server names

2017-07-24 Thread Ramin K
Forgot to reply on list, but we solved it with fqdn_rotate() doing most of the work. $_ldap_servers = ['ldap1','ldap2','ldap3'] $ldap_uri = join(suffix(prefix(fqdn_rotate(sort($_ldap_servers))),'ldaps://'),'/'),' ') Ramin On 7/24/2017 7:24 AM, Rob Nelson wrote: I did just notice this line,

Re: [Puppet Users] How to randomize the order of server names

2017-07-24 Thread Rob Nelson
I did just notice this line, which should remove the .shuffle so it's consistent on every run: server_list = @_ldap_servers.shuffle Rob Nelson rnels...@gmail.com On Mon, Jul 24, 2017 at 7:45 AM, Martijn wrote: > I think that's perfect for the OP's use case. And if you need multiple >

[Puppet Users] How do I turn EC2 instance tags into Puppet SSL Attributes?

2017-07-24 Thread Martijn
Hi group, I'd like to use Puppet SSL attributes (https://docs.puppet.com/puppet/5.0/ssl_attributes_extensions.html#puppet-specific-registered-ids) as a kind of trusted facts, e.g. for policy-based autosigning and to define a 'role' and 'app_tier' level in our Hiera hierarchy. We run Ubuntu in

Re: [Puppet Users] Automated PuppetDB/PostgreSQL install?

2017-07-24 Thread Andrew Grimberg
On 07/22/2017 09:50 AM, Keith Miller wrote: > Hey guys, new to Puppet and looking for some help. Some facts first: > > * Using Ubuntu 16.04 > * Cluster will be of about 60-80 nodes > * Building the infrastructure with Terraform > * Have Puppet Server and Puppet Agents installing through au

Re: [Puppet Users] stdlib module invalid

2017-07-24 Thread Ugo Bellavance
Definitely... Right on: https://github.com/zend-patterns/ZendServerPuppet/blob/master/metadata.json#L6 Thanks a lot, I submitted a PR. Sorry for the noise, but now I understand the role of metadata.json better. On Friday, July 21, 2017 at 12:11:30 AM UTC-4, Rob Nelson wrote: > > It is possib

Re: [Puppet Users] How to randomize the order of server names

2017-07-24 Thread Martijn
I think that's perfect for the OP's use case. And if you need multiple random numbers there's a useful second parameter to fqdn_rand(), the "seed", which can be any string or integer and allows you to get multiple different random numbers on the same host. So, you could use the server_list.size

[Puppet Users] Re: Upgraded puppet server and hiera is not working

2017-07-24 Thread Antony Fomenko
Try to remove default and use datadir and data_hash options for json backend only. -- 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...@goog