aboutsummaryrefslogtreecommitdiff
path: root/files/functions/gsub.rb
diff options
context:
space:
mode:
Diffstat (limited to 'files/functions/gsub.rb')
-rw-r--r--files/functions/gsub.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/files/functions/gsub.rb b/files/functions/gsub.rb
index 743a700..371820f 100644
--- a/files/functions/gsub.rb
+++ b/files/functions/gsub.rb
@@ -1,7 +1,13 @@
# generic gsub call
module Puppet::Parser::Functions
newfunction(:gsub, :type => :rvalue) do |args|
- args[0].gsub(/#{args[1]}/, args[2])
+ if args[0].is_a?(Array)
+ args[0].collect do |val|
+ val.gsub(/#{args[1]}/, args[2])
+ end
+ else
+ args[0].gsub(/#{args[1]}/, args[2])
+ end
end
end