do you want to save the hiera data to redis and puppet automatically
retrieve data in redis?
#1, ruby have redis module, you can just save parameters into redis in
ruby.https://github.com/redis/redis-rb
#2, you can write hiera custom backend to read actual data in any way you
want. http://docs.p
PuppetDB 2.3.3 - April 7, 2015
PuppetDB 2.3.3 Downloads
Available in native package format in the release repositories at:
http://yum.puppetlabs.com and http://apt.puppetlabs.com
For information on how to enable the Puppet Labs repos, see:
http://docs.puppetlabs.com/guid
To help resolve some recent confusion, I am sending out this notice that
was also sent out to the chocolatey users list.
The Puppet provider for Chocolatey is now at
https://forge.puppetlabs.com/chocolatey/chocolatey
- This provider supports both the old PowerShell client (0.9.8 and
below)
On Thursday, April 2, 2015 at 7:37:31 PM UTC-4, Christopher Wood wrote:
>
> You might be interested in this thread:
>
> https://groups.google.com/forum/#!topic/puppet-users/nmVQQA6G-f8
>
>
Thanks!
On Friday, April 3, 2015 at 9:15:00 AM UTC-4, jcbollinger wrote:
>
>
>
> On Thursday, April 2
The puppetlabs-firewall module has a provider called firewall{} which
builds a rule. I've written a wrapper that either calls it (without
any changes) or, if track => false, generates an equivalent set of
rules that does not use the Linux firewall "connection tracking"
mechanism. This is useful i
Here is a similar example using notify
== site.pp ==
node default {
include noticegroups::matches
}
== modules/noticegroups/manifests/matches.pp ==
class noticegroups::matches {
include notices
Notices::Anotice <| tag == matches |>
}
== modules/notices/manifests/anotice.p
Ahhh!! The version of facter on my new servers is 2.4 . . old servers
have 1.7 . . .anyone know how to get facter 2.x to stringify facts?
I've tried adding 'stringify_facts = true' to my puppet.conf, but that did
not change behaviour . . .
On Tue, Apr 7, 2015 at 2:08 PM, Christopher Wood
Sounds like this is set to true (over here I set it to false everywhere to take
advantage of the non-string facts):
https://docs.puppetlabs.com/references/latest/configuration.html#stringifyfacts
On Tue, Apr 07, 2015 at 01:56:43PM -0400, Guy Matz wrote:
>Hi! I'm seeing the following at the
Hello Lupin-
Thank you for the update! Could you point me for any article, so that i can
take a look at how exactly it could be done.
Thanks!
-varun
On Monday, 6 April 2015 20:38:29 UTC-7, lupin...@gmail.com wrote:
>
>
>
> On Tuesday, April 7, 2015 at 8:09:41 AM UTC+12, varun umesh wrote:
>>
>
Hi! I'm seeing the following at the end of my puppet run:
Notice:
/Stage[main]/Mcollective::Server::Config::Factsource::Yaml/File[/etc/mcollective/facts.yaml]/content:
--- /etc/mcollective/facts.yaml 2015-04-07 15:51:25.243758139 +
+++ /tmp/puppet-file20150407-6557-wl0qx7-0 2015-04-07
17
Hi,
I'm trying to classify a new node using the commandline just as explained
here
:
https://docs.puppetlabs.com/pe/latest/cloudprovisioner_classifying_installing.html#classifying-nodes
I've seen the youtube demo that just runs fab, but for some reason my
puppet-setup is failing, which is not
i changed variable name and it worked now.
On Tuesday, 7 April 2015 15:46:54 UTC+5:45, Dhaval wrote:
>
> Hello, this is what it looks.
>
> init.pp
>
> class k5login(
> $principles = hiera_array('k5login::principles', [])
> ){
> validate_array($principles)
>
> file { '.k5login':
> ensure
The puppetlabs-haproxy module has a minor annoyance where by the
"bind" statements are sorted lexicographically instead of by IP
address. (Full description here:
https://tickets.puppetlabs.com/browse/MODULES-1919)
My attempt to fix this bug was to change the ERB template:
diff --git a/templates/
Hi
I have the hiera_yamlgpg backend up and running working like a charm with
the following configuration:
:yamlgpg:
:datadir: "/etc/puppet/environments/%{::environment}/hieradata"
:key_dir: "/etc/puppet/keys" # optional, defaults to ~/.gnupg
:fail_on_error: true # optional, defaults to false
By
Is there a definitive guide somewhere that would guide me as to how to
write Puppet module tests? In particular I'm interested in learning how to
write a tasklist file.
I keep seeing mention of such but nothing that helps...
--
You received this message because you are subscribed to the Google
On Monday, April 6, 2015 at 12:05:09 PM UTC-5, staceyt...@gmail.com wrote:
>
> Hi all,
>
> I am trying to use puppet to downgrade my gdm package from 64 to 39, but
> got package dependency problem:
>
> Here is my class:
>
> class gdmver39 {
> yumrepo { 'custom':
> baseurl => 'file:/home/ad
Hello
I'm upgrading from 3.6 to 3.7 and have it a issue/bug
I'm using users/groups but to keep it short and something others can run
without the mess of users being made I've made up a file example
== modules/filegroups/manifests/matches.pp ===
class filegroups::matches {
include files
Hello, this is what it looks.
init.pp
class k5login(
$principles = hiera_array('k5login::principles', [])
){
validate_array($principles)
file { '.k5login':
ensure => file,
path=> '/root/.k5login',
owner => 'root',
group => 'root',
mode=> '0644',
content
Hello,
how do i add below to redis ?
sudo::configs:
'admins':
'content' : "%admins ALL=(ALL) NOPASSWD: ALL"
'priority' : 10
I tried couple of things but not sure how to add array of hashes.
Regards,
D
--
You received this message because you are subscribed to the Google Groups
"
Thanks to both posters, but I decided against using the native mount type.
In part I wanted a bit of practice with Augeas and as Christopher wrote,
remounting is not safe.
Well, I stuck with my module and ended up with something that is not the
prettiest piece of code, but does the trick. No au
On 06 Apr 2015, at 17:35, Dhaval wrote:
> hello,
>
> I am trying to develop puppet module for k5login entries .. now my question
> is, how do i manage entries for multiple hierarchies ?
>
> currently when i try it, it picks up from where it finds entry first and
> completes it, how do i get
On 07 Apr 2015, at 04:55, Dave Hunsinger wrote:
> Can somebody help me with what I'm doing wrong here? I want to copy all
> sshkeys in the file resource of this puppet module to the machine:
>
> class sshkeys {
>
> file { '/etc/ssh/ssh.keys':
> ensure => directory,
> owner => 'root',
>
22 matches
Mail list logo