From b5e2aff27ba8711a187b1a4d73380aeeb4387c42 Mon Sep 17 00:00:00 2001 From: mh Date: Thu, 30 Dec 2010 14:04:53 +0100 Subject: add a new function called tfile --- lib/puppet/parser/functions/tfile.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lib/puppet/parser/functions/tfile.rb (limited to 'lib') diff --git a/lib/puppet/parser/functions/tfile.rb b/lib/puppet/parser/functions/tfile.rb new file mode 100644 index 0000000..2e792f9 --- /dev/null +++ b/lib/puppet/parser/functions/tfile.rb @@ -0,0 +1,18 @@ +Puppet::Parser::Functions::newfunction( + :tfile, + :type => :rvalue, + :doc => "Returns the content of a file. If the file or the path does not + yet exist, it will create the path and touch the file." +) do |args| + raise Puppet::ParseError, 'tfile() needs one argument' if args.length != 1 + path = args.to_a.first + unless File.exists?(path) + dir = File.dirname(path) + unless File.directory?(dir) + Puppet::Util.recmkdir(dir,0700) + end + require 'fileutils' + FileUtils.touch(path) + end + function_file([path]) +end -- cgit v1.2.3 From 7e7eb1d652a97b73e09c26c5c04e21e80d8706ab Mon Sep 17 00:00:00 2001 From: mh Date: Fri, 31 Dec 2010 11:55:38 +0100 Subject: rather directly read the file than use the puppet function --- lib/puppet/parser/functions/tfile.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/puppet/parser/functions/tfile.rb b/lib/puppet/parser/functions/tfile.rb index 2e792f9..a984892 100644 --- a/lib/puppet/parser/functions/tfile.rb +++ b/lib/puppet/parser/functions/tfile.rb @@ -14,5 +14,5 @@ Puppet::Parser::Functions::newfunction( require 'fileutils' FileUtils.touch(path) end - function_file([path]) + File.read(path) end -- cgit v1.2.3