in 2.7 recmkdir is gone
This commit is contained in:
parent
e90839b248
commit
50a1943175
2 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -44,7 +44,7 @@ describe "the tfile function" do
|
|||
it "should create the path if it does not exist" do
|
||||
File.stubs(:exists?).with('/some_path/aa').returns(false)
|
||||
File.stubs(:directory?).with('/some_path').returns(false)
|
||||
Puppet::Util.expects(:recmkdir).with("/some_path",0700)
|
||||
FileUtils.expects(:mkdir_p).with("/some_path",:mode => 0700)
|
||||
FileUtils.expects(:touch).with('/some_path/aa')
|
||||
result = @scope.function_tfile(['/some_path/aa'])
|
||||
result.should == "foo1\nfoo2\n"
|
||||
|
|
Loading…
Reference in a new issue