summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/tfile.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser/functions/tfile.rb')
-rw-r--r--lib/puppet/parser/functions/tfile.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/puppet/parser/functions/tfile.rb b/lib/puppet/parser/functions/tfile.rb
deleted file mode 100644
index acb6609b..00000000
--- a/lib/puppet/parser/functions/tfile.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-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)
- require 'fileutils'
- FileUtils.mkdir_p(dir, :mode => 0700)
- end
- require 'fileutils'
- FileUtils.touch(path)
- end
- File.read(path)
-end