Re: [Puppet Users] Re: Forge ACL Module 1.1.1 on Windows 7 x64 SP1

2015-09-28 Thread Rob Reynolds
Can you address the yum bit? On Mon, Sep 28, 2015 at 12:34 PM, jmp242 wrote: > And I removed the "target" and put it in the ACL name as you showed, and > get the same error. > > > On Friday, September 25, 2015 at 2:31:43 PM UTC-4, jmp242 wrote: >> >> I tried with the

Re: [Puppet Users] Puppetdb garbage collection failing

2015-09-28 Thread Wyatt Alt
On 09/28/2015 05:40 AM, Matt Jarvis wrote: We seem to have hit a bit of an issue with puppetdb garbage collection. Initial symptoms were exceptions in the puppetdb logs : Retrying after attempt 6, due to: org.postgresql.util.PSQLException: This connection has been closed. And on the

[Puppet Users] Re: Forge ACL Module 1.1.1 on Windows 7 x64 SP1

2015-09-28 Thread jmp242
And I removed the "target" and put it in the ACL name as you showed, and get the same error. On Friday, September 25, 2015 at 2:31:43 PM UTC-4, jmp242 wrote: > > I tried with the simplified version: > Enter code here... acl { 'chocolatey.config': > target => >

Re: [Puppet Users] Puppetdb garbage collection failing

2015-09-28 Thread Wyatt Alt
On 09/28/2015 10:39 AM, Wyatt Alt wrote: On 09/28/2015 05:40 AM, Matt Jarvis wrote: We seem to have hit a bit of an issue with puppetdb garbage collection. Initial symptoms were exceptions in the puppetdb logs : Retrying after attempt 6, due to: org.postgresql.util.PSQLException: This

[Puppet Users] Re: Puppet Strings Error

2015-09-28 Thread Ian Kronquist
Hi Dan, Thanks for testing out Strings on Windows! We really haven't given Strings enough love on that operating system, sorry. I would have to guess that the error is happening here

[Puppet Users] Puppetdb garbage collection failing

2015-09-28 Thread Matt Jarvis
We seem to have hit a bit of an issue with puppetdb garbage collection. Initial symptoms were exceptions in the puppetdb logs : Retrying after attempt 6, due to: org.postgresql.util.PSQLException: This connection has been closed. And on the postgres side : LOG: incomplete message from

[Puppet Users] dump complete enc to file on client

2015-09-28 Thread Michael Wörz
Hello, we want to dump ENC Data to a file on the puppet clients so that it can be used outside puppet scripts. file{'/etc/config-enc': content => "$yaml" } does the Job but the output data is not formated an close to unreadable. Json or Yaml woukd be nice. thanks -- You received this

Re: [Puppet Users] Re: puppetlabs-postgrest module not loaded

2015-09-28 Thread Alfredo De Luca
Hi David et all. I didn't have that much time to investigate further but I tried only to have postgresql::server in my xxx.xxx.xxx.yaml and it install the default postgresql so not what I wanted. So it looks like I can't use postgresql (or mysql) only with hiera. Should I contact the team

[Puppet Users] Re: dump complete enc to file on client

2015-09-28 Thread jcbollinger
On Monday, September 28, 2015 at 6:10:35 AM UTC-5, Michael Wörz wrote: > > Hello, > > we want to dump ENC Data to a file on the puppet clients so that it can be > used outside puppet scripts. > > file{'/etc/config-enc': > content => "$yaml" > } > > does the Job but the output data is not

[Puppet Users] should create_resources honor schedule metaparameter?

2015-09-28 Thread Tom Downes
I have a defined resource that I instantiate through create_resources and a set of defaults that trace back to hiera: create_resources("apache::vhost", $full_apache_hash, $http_defaults) http_defaults: schedule: 'nightly' priority: '25' docroot: '/var/www' serveradmin:

Re: [Puppet Users] Re: dump complete enc to file on client

2015-09-28 Thread Michael Wörz
ENC was synonym for stuctured data passed to the puppet client. i solved it now using a ruby template: <%= YAML.dump(yaml) %> thanks 2015-09-28 15:02 GMT+02:00 jcbollinger : > > > On Monday, September 28, 2015 at 6:10:35 AM UTC-5, Michael Wörz wrote: >> >> Hello, >>