[Puppet Users] Re: Update facts without applying catalog.

2015-07-13 Thread asq
W dniu piątek, 10 lipca 2015 00:37:42 UTC+2 użytkownik Sergii Alieksanov napisał: > > Is it possible to force puppet agent to send facts to master (puppetdb) > while it is locked (puppet agent --disable) or run in --noop mode? > The reason to have such feature is pretty simple: having up-to-date

[Puppet Users] Re: Manage hiera file through puppet

2015-07-13 Thread jcbollinger
On Friday, July 10, 2015 at 7:29:44 AM UTC-5, Albert Shih wrote: > > Hi again. > > > Is it some very bad thing to manage some hiera file through puppet ? > > I've a class to create a vm (virtual machin), so when I want a new vm I do > something like > > hyperviser.pp --> > > add_vm { '

[Puppet Users] Re: Could not evaluate: Could not find command '/var/lib/puppet/concat/bin/concatfragments.rb'

2015-07-13 Thread Charlie-Jane Costello
Yeah, I'm getting the same error as you Joe. I'm also using the Apache module on a Centos7 machine. Puppet version 3.7.4. I did however try initially with 3.8.1, but thought that this may have been a version issue, and therefore downgraded. On Thursday, June 4, 2015 at 2:55:01 PM UTC+1, Joe Koe

Re: [Puppet Users] Re: Could not evaluate: Could not find command '/var/lib/puppet/concat/bin/concatfragments.rb'

2015-07-13 Thread Alexandre Dumont
Please see https://tickets.puppetlabs.com/browse/MODULES-2206: the existing implementation for concat does not work properly with noop mode, and unfortunately cannot work without violating the principle of noop mode (no changes made on the system). There was some discussion about this, and the issu

Re: [Puppet Users] Re: Could not evaluate: Could not find command '/var/lib/puppet/concat/bin/concatfragments.rb'

2015-07-13 Thread Charlie-Jane Costello
Yeah, I've just tried running the code again without --noop and it worked fine. On Monday, July 13, 2015 at 2:26:40 PM UTC+1, Alexandre Dumont wrote: > > Please see https://tickets.puppetlabs.com/browse/MODULES-2206: the > existing implementation for concat does not work properly with noop mode

Re: [Puppet Users] Re: Anyone really using Postgres for a Hiera backend?

2015-07-13 Thread Erik Dalén
Yeah, I'm not really using puppet server (yet at least) or the postgres hiera backend. So if someone else wants to take over maintainership of it I can transfer the repo ownership. On Tue, 19 May 2015 at 18:51 Tony Thayer wrote: > Actually, I just realized I was using my own fork of the original

Re: [Puppet Users] puppet 3.8.1 reinstalling downgraded package on ubuntu precise

2015-07-13 Thread Randy Smith
I'm aware of the version option but I still think "present" should be able see that an older version is installed even if a newer version had been installed and removed. That is the defined behavior of "present", after all. On Sun, Jul 12, 2015 at 4:02 AM, Lowe Schmidt wrote: > Setting the speci

[Puppet Users] Puppet 4.2. and latest Puppet Agent 1.2.1-x64 on Windows 2008 r2 keeps crashing with error 400: Invalid byte sequence in UTF-8

2015-07-13 Thread mst3k
Hi, I’m trying to set up a new heterogeneous environment with a Puppet 4.2. server running on a 14.04.2 Ubuntu LTS and some *nix and windows clients. Without any changes to the server (except enabling autosigning for my domain and setting the alt_dns_names for the master) I’m trying to connect

[Puppet Users] Collecting CPU load / usage facts

2015-07-13 Thread JonY
I'm wondering if puppet could be used to collect `sar` style data. Does such a module exist? Is this outside the intended use of facter? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails fr

[Puppet Users] PuppetLabs Netscaler Module

2015-07-13 Thread Matthew Ceroni
I am attempting to use the puppetlabs netscaler module to manage, well a Citrix Netscaler :) I setup my /etc/puppet/device.conf on the puppet agent that will act as the proxy: [usc1lb01] type netscaler url https://nsroot:XX@10.191.2.8/nitro/v1 As a simple test I set my manifest as follow

Re: [Puppet Users] PuppetLabs Netscaler Module

2015-07-13 Thread Hunter Haugen
The module is apparently using ruby >=1.9 hash syntax which is not supported by 1.8 https://github.com/puppetlabs/puppetlabs-netscaler/blob/master/lib/puppet/util/network_device/transport/netscaler.rb#L12 Whoops. You are welcome to send a patch and change all the `url: url` to `:url => url` etc, o

Re: [Puppet Users] Re: Could not evaluate: Could not find command '/var/lib/puppet/concat/bin/concatfragments.rb'

2015-07-13 Thread Thomas Müller
It needs to copy a script once - which it can't do if it was never ran without noop. after that the noop mode should work. Am Montag, 13. Juli 2015 15:40:57 UTC+2 schrieb Charlie-Jane Costello: > > Yeah, I've just tried running the code again without --noop and it worked > fine. > > On Monday,