minor fixes to .ignore and docs
This commit is contained in:
parent
3d96669da7
commit
13ae7fbace
3 changed files with 6 additions and 3 deletions
|
@ -1 +0,0 @@
|
|||
A placeholder to nail this directory into git
|
|
@ -19,7 +19,7 @@ define modules_dir (
|
|||
source => [ "puppet:///${name}/modules_dir", "puppet:///common/empty"],
|
||||
checksum => mtime,
|
||||
# ignore the placeholder
|
||||
ignore => '.ignore',
|
||||
ignore => '\.ignore',
|
||||
recurse => true, purge => true, force => true,
|
||||
mode => $mode, owner => $owner, group => $group;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# generic gsub call
|
||||
module Puppet::Parser::Functions
|
||||
# thin wrapper around the ruby gsub function
|
||||
# gsub($string, $pattern, $replacement) will replace all occurrences of
|
||||
# $pattern in $string with $replacement. $string can be either a singel
|
||||
# value or an array. In the latter case, each element of the array will
|
||||
# be processed in turn.
|
||||
newfunction(:gsub, :type => :rvalue) do |args|
|
||||
if args[0].is_a?(Array)
|
||||
args[0].collect do |val|
|
||||
|
|
Loading…
Reference in a new issue