From 4f3a67f21568394dd89a969bd373cbbd59784f7e Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Wed, 6 May 2009 12:00:23 -0700 Subject: Fixing #2221 - pluginsignore should work again We weren't splitting on whitespace, which is necessary since the settings don't support arrays but files expect them. Signed-off-by: Luke Kanies --- lib/puppet/configurer/downloader.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/puppet') diff --git a/lib/puppet/configurer/downloader.rb b/lib/puppet/configurer/downloader.rb index 9653c3a58..7409fca64 100644 --- a/lib/puppet/configurer/downloader.rb +++ b/lib/puppet/configurer/downloader.rb @@ -56,7 +56,7 @@ class Puppet::Configurer::Downloader def file args = default_arguments.merge(:path => path, :source => source) - args[:ignore] = ignore if ignore + args[:ignore] = ignore.split if ignore Puppet::Type.type(:file).new(args) end -- cgit