aboutsummaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/tfile.rb
blob: a984892f29c0843367a619d6d017e7b0333d1e67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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