Displaying 8 results from an estimated 8 matches for "bkearney".
Did you mean:
akearney
2007 Sep 21
4
Recursive directory create
It appears that in version 0.23 of puppet that how I am trying to create
directories is nor working. If I have a snippet like this:
# Set up the images
file {"$git_web_image_location":
ensure => directory,
recurse => true
}
which becomes:
file {"/var/www/html/images/git":
ensure => directory,
2016 Nov 22
0
[jmracek@redhat.com: DNF-2-0 - release candidate]
...<clumens@redhat.com>, pjones@redhat.com, sbueno@redhat.com,
christos.triantafyllidis@gmail.com, kevin@tigcc.ticalc.org,
clime@redhat.com, msuchy@redhat.com, bkabrda@redhat.com,
phracek@redhat.com, Michael Mraka <mmraka@redhat.com>,
alikins@redhat.com, awood <awood@redhat.com>, bkearney@redhat.com,
tla@rasmil.dk, thomas.moschny@gmx.de, nhorman@redhat.com,
jfilak@redhat.com, michal.toman@gmail.com, mkrizek@redhat.com,
wwoods@redhat.com, mgrepl@redhat.com, dwalsh@redhat.com,
sgallagh@redhat.com, twoerner@redhat.com, rjones@redhat.com,
nav007@gmail.com, anish.developer@gmail.com...
2008 Aug 21
11
spam on this list..
Is there anyway we can get rid of this crap on this list? It''s
getting old fast.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com
To unsubscribe from this group, send email to
2010 Oct 06
3
Using Augeas to manage /etc/network/interfaces from Puppet
Hi,
Sorry for the broad distribution, I''m not sure who best can help me.
I''m trying to add a new interface stanza to /etc/network/interfaces.
With augtool, I can accomplish this with the following:
set /files/etc/network/interfaces/iface[last()+1] bond1
set /files/etc/network/interfaces/iface[last()]/family inet
set /files/etc/network/interfaces/iface[last()]/method dhcp
set
2009 Jul 31
6
Augeas and grub.conf
Having just spent about 2 hours trying to work out how to add a
password --md5 $1$Qejy8/$.qFUuDeYL.cuSDpN1ZD.S1
line to my grub.conf I thought it would be worth sharing how I finally
got it to work.
augeas {"/boot/grub/grub.conf":
context => "/files/boot/grub/grub.conf",
changes => [ "set timeout 15",
2007 Sep 24
3
conceptual problem deploying git repos to a puppetmaster
So before I start I should be upfront and disclose that I''m using
external_nodes, so in keeping with that I''m trying as hard as possible to
keep all the actually ''specific'' data in the node config files (currently
just yaml)and have nothing specific in modules especially.
So I have this definition: (credit goes to DavidS for the inspiration)
define git::repo (
2007 Sep 26
2
How to 5ubscribe with modules
Ok.. munging the tag below to get pas the agressive mailbot
administrivia filter.
I have a manifest the following:
module::foo{"$someVariable": param1=>"x" }
modul::bar{"data":
5ubscribe => [Module::Foo["$someVariable"]]
}
The only way to get past the parsing seems to be to do one of the
following:
5ubscribe
2010 Jun 22
0
Question about the remote Authentication in the libvirt Java bindings
Dustin:
I am adding this response to the libvirt list as well so that others may
see it.
The authorization is done via a callback. The ConnectAuthDefault() that
you are using is one such implementation. You could create your own
subclass of ConnectAuth, and override the method:
public abstract int callback(Credential[] cred);
And then provide the username/password in that fashion. Look at