From b575d1585322709604f558742dfd6f5ce412b342 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Sat, 24 Nov 2007 23:16:47 -0600 Subject: Integrating Matt Palmer's patch to provide a 'plugins' mount, fixing #891. The patch was ported to the current code by David Schmitt, I applied the rest of Matt's patches, and I then fixed all of the code so that the tests passed. The primary change I had to make to the patch was reenabling host expansion in paths -- his patch had disabled it. --- test/network/client/master.rb | 1 + test/network/handler/fileserver.rb | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/network/client/master.rb b/test/network/client/master.rb index a005dadc7..84cd9388c 100755 --- a/test/network/client/master.rb +++ b/test/network/client/master.rb @@ -179,6 +179,7 @@ end assert_equal(hostname, Facter.value(:hostname), "Lost value to hostname") + assert_equal("yayness", Facter.value(:myfact), "Did not get correct fact value") diff --git a/test/network/handler/fileserver.rb b/test/network/handler/fileserver.rb index 3539169dc..962d35e65 100755 --- a/test/network/handler/fileserver.rb +++ b/test/network/handler/fileserver.rb @@ -1030,7 +1030,6 @@ allow * end conffile = tempfile - @@tmpfiles << conffile File.open(conffile, "w") { |f| f.puts "# a test config file" } -- cgit