Displaying 4 results from an estimated 4 matches for "recurselimit".
2010 Dec 13
1
monitoring contents of a directory
...esent;
}
file {
"/home/snort/Rules/raw/":
mode => "640",
owner => snort,
group => snort,
source => ''puppet:///modules/snort/Rules/raw'',
recurse => true,
recurselimit => 1,
backup => false,
ensure => present;
}
}
This mirrors the files fine....
in another class:
class monitor {
class pulledpork ( $master) {
exec {
"/home/snort/bin/pulledpork -nc conf/$master/pp.conf":
cwd => "...
2010 Feb 08
5
Error 400 on SERVER: private method `gsub' called for nil:NilClass
Hi all,
I''m new to puppet and I can''t seem to figure out how to get rid of
this error on the client or to get the recursive copy of files to the
client:
err: //dev_oracle_dev_tools::install/File[/tmp/oracle_dev_tools]:
Failed to generate additional resources using ''eval_generate'': Error
400 on SERVER: private method `gsub'' called for nil:NilClass
My
2013 Jun 11
1
Manage users with Winbind (Samba) installed
...this:
resources {''user'':
purge => true,
unless_system_user => 999,
}
file {''/home'':
ensure => directory,
owner => ''root'',
group => ''root'',
mode => 0644,
force => true,
purge => true,
recurse => true,
recurselimit => 1,
}
Ok, after that I have only managed known accounts. But then I change
nsswitch.conf to get users from winbind, Puppet start to generate a lot of
errors like this:
Error: Could not delete user TEST3\Guest: Execution of ''/usr/sbin/userdel
TEST3\Guest'' returned 1: user...
2011 Mar 22
25
RFC: Splitting up the file{} type functionality.
The file{} type can do all of the following:
* manage single files
* manage directories
* manage symlinks
* manage recursive file copies
The intersection of all these bits of functionality makes it difficult
to understand exactly what is going on when you''re new to Puppet, and
even experienced users often don''t know how combining symlinks/content
management is going to work.