aboutsummaryrefslogtreecommitdiff
path: root/files/functions/gsub.rb
diff options
context:
space:
mode:
authordavid <david@f03ff2f1-f02d-0410-970d-b9634babeaa1>2007-08-02 09:28:47 +0000
committerdavid <david@f03ff2f1-f02d-0410-970d-b9634babeaa1>2007-08-02 09:28:47 +0000
commit237d7fa76533bf504bbec2a57cad7c96410688ec (patch)
treedf0ce22073e80783ff0ed61b2086096554c92a8b /files/functions/gsub.rb
parentd8ac4de367a04728813564f3f7ed3a365f2050bc (diff)
downloadpuppet-common-237d7fa76533bf504bbec2a57cad7c96410688ec.tar.gz
puppet-common-237d7fa76533bf504bbec2a57cad7c96410688ec.tar.bz2
moved puppet functions to common::puppetmaster
git-svn-id: http://club.black.co.at:82/svn/manifests/trunk@154 f03ff2f1-f02d-0410-970d-b9634babeaa1
Diffstat (limited to 'files/functions/gsub.rb')
-rw-r--r--files/functions/gsub.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/files/functions/gsub.rb b/files/functions/gsub.rb
new file mode 100644
index 0000000..743a700
--- /dev/null
+++ b/files/functions/gsub.rb
@@ -0,0 +1,7 @@
+# generic gsub call
+module Puppet::Parser::Functions
+ newfunction(:gsub, :type => :rvalue) do |args|
+ args[0].gsub(/#{args[1]}/, args[2])
+ end
+end
+