[Puppet Users] Re: puppet agent fails to self-restart on config change

2019-11-21 Thread Yvan Broccard
> > I experience the same issue here, sometimes agents are stuck in this > Shutdown/restart loop, especially if puppet agent changed a config value in > puppet.conf. > We're using Puppet 6 now here and this issue is new with Puppet 6. In the past, with puppet serie 4, we never experienced this

[Puppet Users] Puppet : Install a .deb

2019-11-21 Thread Reth Kevin Bagares
How can I install a .deb file in a puppet custom module? I want to run this command in a puppet ``` wget https://repo.percona.com/apt/percona-release_0.1-6.$(lsb_release -sc)_all.deb sudo dpkg -i percona-release_0.1-6.$(lsb_release -sc)_all.deb sudo apt-get update sudo apt-get install percona-x

Re: [Puppet Users] Puppet : Install a .deb

2019-11-21 Thread Becca Robinson
Take a look at the package resource. https://puppet.com/docs/puppet/latest/types/package.html Additionally if the source is not a configured repo, then you may want to use the source attribute of the package repo. -- Becca Robinson

Re: [Puppet Users] Re: puppet agent fails to self-restart on config change

2019-11-21 Thread Josh Cooper
On Thu, Nov 21, 2019 at 7:49 AM Yvan Broccard wrote: > I experience the same issue here, sometimes agents are stuck in this >> Shutdown/restart loop, especially if puppet agent changed a config value in >> puppet.conf. >> > > We're using Puppet 6 now here and this issue is new with Puppet 6. In t

[Puppet Users] puppet --trace content

2019-11-21 Thread Justin Stoller
Hello! I noticed that the way we were computing the "Puppet" stack (ie the files and line numbers from function calls within Puppet code like `fqdn_rand()`) had become slow and was likely to become slower. In my attempt to improve the situation I focused on ensuring backwards compatibility with ca

Re: [EXTERNAL] - Re: [Puppet Users] Puppet : Install a .deb

2019-11-21 Thread Dirk Heinrichs
Am Donnerstag, den 21.11.2019, 10:03 -0600 schrieb Becca Robinson: Take a look at the package resource. https://puppet.com/docs/puppet/latest/types/package.html