summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2011-02-26 00:25:57 +0100
committerintrigeri <intrigeri@boum.org>2011-02-26 00:25:57 +0100
commit0b709ed5a7acb5964970e2f49153bd47fc9a7301 (patch)
tree0ddc1b182904f3074a4cec121910c445daa2f5bd /lib
parent5d7667b8d00cc3fc6cfa75a0413076db1dd0cff8 (diff)
parent7e7eb1d652a97b73e09c26c5c04e21e80d8706ab (diff)
Merge remote branch 'immerda/master'
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/parser/functions/tfile.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/tfile.rb b/lib/puppet/parser/functions/tfile.rb
new file mode 100644
index 0000000..a984892
--- /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
+ File.read(path)
+end