Displaying 11 results from an estimated 11 matches for "puppet_augeas".
2010 Oct 22
2
problem w/ puppet & augeus : xinetd.d/rsync server_args value
...To this end, i am using the camptocamp rsyncd module available from git.
Everything works except this line. I thought it was, perhaps, a
questions of spaces (this has been discussed on the list before), but
according to the documentation here :
http://projects.puppetlabs.com/projects/1/wiki/Puppet_Augeas
All that i should need to do is to enclose the space-filled value in
quotes, like so :
"set server_args/value ''--daemon --address=$ipaddress_eth0
--log-file=/var/log/rsyncd.log''"
A verbose puppetd run says this :
debug: Augeas[enable rsync service](provider=augeas)...
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
2010 Sep 06
6
augeas and /etc/securetty
Hi, I need to add one line to /etc/securetty, say it needs to be ttyS1. Do
not add it if ttyS1 already exists in file /etc/securetty.
How to achieve this using puppet module in puppet 2.5? This file is
different than the other examples using augeas, this one only has value per
line, not name-val pair.
Thanks,
Hai
--
You received this message because you are subscribed to the Google Groups
2011 Aug 25
6
manage sudoers with augeas
Hello,
I am trying to use augeas via puppet,
augeas { "mailops":
context => "/files/etc/sudoers",
changes => [
"set spec[user = ''%mail-ops'']/user %mail-ops",
"set spec[user = ''%mail-ops'']/host_group/host ALL",
"set spec[user = ''%mail-ops'']/host_group/command[1] \"/bin/su
2011 Mar 25
0
augeas match != bug
...his bug at http://projects.puppetlabs.com/issues/5211 is showing as
''Closed'', but I am still hitting it with Puppet 2.6.7-1 on RHEL6 (ruby
1.8.7).
For /etc/security/limits.conf, got some error using almost the same code as
here:
http://projects.puppetlabs.com/projects/puppet/wiki/Puppet_Augeas?version=7
The only change is: onlyif => "match $path_exact size != 0" rather than:
onlyif => "match $path_exact size == 0".
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to...
2010 Apr 03
1
Do not edit above this line policy
Hi, list:
I''m on my first steps using Puppet. Now that the easiest parts are somehow
tamed more and more questions do arise. But let''s go one by one.
For some computers/services we delegate some parts of their administration
(i.e. development environments). I''ll take an easy example on the /etc/hosts
file:
There should be a ''127.0.0.1
2010 Nov 19
6
augeas / sudoers
Hello everybody!
How can i create with puppet following sudoers file:
User_Alias CENTREON=apache,nagios
CENTREON ALL = NOPASSWD: /etc/init.d/nagios* restart
CENTREON ALL = NOPASSWD: /etc/init.d/nagios* reload
CENTREON ALL = NOPASSWD: /usr/bin/nagios* -v *
The problem that augeas create only last line, replacing previous one.
--
You received this message because you are subscribed to
2013 Sep 30
2
best practice for managing multiple stanzas within a config file?
What is the best way to manage multiple stanza within a config file?
For a splunk configuration file (inputs.conf) I need to manage some thing
like
[monitor://var/log]
blacklist = someRegularExpression
whitelist = someOtherRegularExpression
[monitor://var/lib/ourApp]
There can be multiple monitor stanzas and each may or may not have a
whitelist or blacklist.
I haven''t found any
2013 Mar 13
2
How to add a new line at a particular place in a file..
Hi all,
How can i write a puppet code such that..it adds a line of content that i
want..at a desired place in a file..
if [ "x$JAVA_OPTS" = "x" ]; then
JAVA_OPTS="-Xms64m -Xmx512m -XX:MaxPermSize=256m
-Djava.net.preferIPv4Stack=true -Dorg.jboss.resolver.warning=true
-Dsun.rmi.dgc.client.gcInterval=3600000
-Dsun.rmi.dgc.server.gcInterval=3600000
2013 Jan 07
3
How manage xml elements as resources?
I would like to use puppet classes to inject and/or replace xml elements
into an existing xml configuration file. This seems to me to be a common
problem already solved. Can anyone suggest the easiest way to do this?
An example use case would look like something like this.
Given xml file:
<host>
<server name="one"/>
<server name="two"/>
2013 Jan 04
5
How to manage one line in a file by puppet
Hi,
I want to write a puppet module for xen on Debian. This module will need
to manage one line in the file /etc/default/grub, namely the line
starting with "GRUB_CMDLINE_XEN=". Currently I want to leave the rest of
the file untouched.
Which would be the best way to do this?
I see two options:
a) Do some `sed` magic on the file in a `exec` call. Downside: puppet
won''t notice