diff options
author | Micah <micah@riseup.net> | 2015-02-28 16:44:30 +0000 |
---|---|---|
committer | Micah <micah@riseup.net> | 2015-02-28 16:44:30 +0000 |
commit | bf746f2f9caacd869a252c7f09cde93c0e577e09 (patch) | |
tree | e7c2d4161b529967079d20ff4f81e5c118cf1a67 /lib/puppet/parser/functions/tfile.rb | |
parent | ac5da1df281e636ecffe260b681e8119a1057e1d (diff) | |
parent | c6beeb1718608389e027d287c7a8ddd586313df2 (diff) | |
download | puppet-common-bf746f2f9caacd869a252c7f09cde93c0e577e09.tar.gz puppet-common-bf746f2f9caacd869a252c7f09cde93c0e577e09.tar.bz2 |
Merge branch 'master' into 'master'
Merge with immerda
See merge request !1
Diffstat (limited to 'lib/puppet/parser/functions/tfile.rb')
-rw-r--r-- | lib/puppet/parser/functions/tfile.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/tfile.rb b/lib/puppet/parser/functions/tfile.rb index a984892..acb6609 100644 --- a/lib/puppet/parser/functions/tfile.rb +++ b/lib/puppet/parser/functions/tfile.rb @@ -9,7 +9,8 @@ Puppet::Parser::Functions::newfunction( unless File.exists?(path) dir = File.dirname(path) unless File.directory?(dir) - Puppet::Util.recmkdir(dir,0700) + require 'fileutils' + FileUtils.mkdir_p(dir, :mode => 0700) end require 'fileutils' FileUtils.touch(path) |