Re: [Puppet Users] Advice on module structure

2019-06-11 Thread Martin Alfke
Hi CJ, > On 10. Jun 2019, at 17:12, CJ Ess wrote: > > I need some advice - > > In my environment I have multiple groups which manage multiple applications > in three different environments (dev/qa/prod). The layout of the puppet files > is very non-standard and that causes problems. The three

RE: [Puppet Users] Puppet does not recognize bind mounts

2019-06-11 Thread Bart-Jan Vrielink
Hello, I'm unable to reproduce this behavior. To see about which mounts Puppet knows about, use 'puppet resource mount' or 'puppet resource mount /pub/fedora/site/candidates/30' # puppet resource mount /mnt/home mount { '/mnt/home':   ensure  => 'mounted',   device  => '/home',   dump    =>

Re: [Puppet Users] Puppet-Ceph

2019-06-11 Thread LuD j
Hello, You can use the module made by openstack for example : https://github.com/openstack/puppet-ceph Le mar. 4 juin 2019 à 02:53, Asmae Azbeg a écrit : > Hi everyone, > anyone have an idea how to deploy and orchestrate a Ceph cluster using > Puppet? > any information or example will be helpful

[Puppet Users] Could not back up /home/user/.ssh/authorized_keys: Could not find terminus file for indirection file_bucket_file

2019-06-11 Thread brian lamb
I have an event failure, one for each user. They use global facter variables for the keys, im not sure if thats relavant. *What is terminus, does that insinuate endpoint? **What is indirection, and file_bucket_file? *In my implementation of this, i havent seen those keywords yet, however its

[Puppet Users] Re: Could not back up /home/user/.ssh/authorized_keys: Could not find terminus file for indirection file_bucket_file

2019-06-11 Thread Eric Sorenson
It is trying to use an old backup mechanism , the way to read the error (not that you should have to understand this, it's terrible) is Could not load a ruby extension named "file.rb" for the "file_bucket_file" setting. The shortest fix is to set "File { backup => false }" in your site.pp. --