]> gitweb.fluxo.info Git - puppet-common.git/commitdiff
in 2.7 recmkdir is gone
authormh <mh@immerda.ch>
Fri, 8 Jun 2012 15:26:43 +0000 (12:26 -0300)
committermh <mh@immerda.ch>
Fri, 8 Jun 2012 15:26:43 +0000 (12:26 -0300)
lib/puppet/parser/functions/tfile.rb
spec/unit/parser/functions/tfile.rb

index a984892f29c0843367a619d6d017e7b0333d1e67..acb6609bc40c7881ab5f14d8ce9c1a66e141fddc 100644 (file)
@@ -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)
index 1cc37d4b07e442df4b3ba5554e93f36023d1855d..5c8f636ee4651f98dc26a43b3c1e9be1e4a39b77 100644 (file)
@@ -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"