Re: [Puppet Users] Puppet agent platform removals

2018-05-09 Thread enis . inan
Hi Dirk, Ubuntu 18.04 LTS should have nightly puppet-agent packages available soon, with full-fledged support landing sometime this summer. We will follow up on this thread when the nightlies are available. -Enis On Tuesday, May 8, 2018 at 11:20:53 PM UTC-7, Dirk Heinrichs wrote: > > Hi, > >

[Puppet Users] Master platform removals

2018-05-09 Thread Enis Inan
*We are no longer supporting SLES 11 and Ubuntu 14.04 masters for PE 2018.1 and later. However these master OS versions continue to be supported in PE 2017.3 and PE 2016.4. Note: This removal only applies to master support. SLES 11 and Ubuntu 14.04 agents continue to be available and supported.Thes

[Puppet Users] Help on puppet (multiple class in single manifest)

2018-05-09 Thread Alessandro Ciappei
Hello all, I'm new on puppet, and i try to create one deployment for my company by satellite 6 and puppet. I would like to create a module, with single manifest, and inside multiple classes. I need to choose each class separately, because will be installed in different server for same applicati

Re: [Puppet Users] Dealing with hashes (again)

2018-05-09 Thread Arnau
Hi Henrik, thanks for your answer. The answer is: * => $data_sync['ssh_key'] Without interpolation the resource is created as it's areal hash... (you can't imagine how much time I spent in this one Fun fact: the notify is correct) * The localdata key does not exists in the define as it's

Re: [Puppet Users] Dealing with hashes (again)

2018-05-09 Thread Henrik Lindberg
On 09/05/18 13:36, Arnau wrote: Hi all, I  have a hash of hashes in hiera: cb_data_sync:   localdata:     peers: peer1 peer2     source: /data/1     target: /data/2     ssh_key:       key: XYZ       type: ssh-rsa       user: root Then, in a main class, I call a define using the above d

[Puppet Users] Dealing with hashes (again)

2018-05-09 Thread Arnau
Hi all, I have a hash of hashes in hiera: cb_data_sync: localdata: peers: peer1 peer2 source: /data/1 target: /data/2 ssh_key: key: XYZ type: ssh-rsa user: root Then, in a main class, I call a define using the above data: class cb_sync( Hash $cb_sync = loo