summaryrefslogtreecommitdiff
path: root/lib/chef/providers.rb
diff options
context:
space:
mode:
authorJay Mundrawala <jdmundrawala@gmail.com>2015-05-05 12:20:02 -0500
committerJay Mundrawala <jdmundrawala@gmail.com>2015-05-05 12:07:11 -0700
commite4721a3e89e24614eebd6302e53b3b91d4535a92 (patch)
treeb4fa8c94c01690604f51c392f5d9c451964d7ecc /lib/chef/providers.rb
parent8c92948746bc418fac09218814a9cfb9e4894b5d (diff)
downloadchef-e4721a3e89e24614eebd6302e53b3b91d4535a92.tar.gz
remote_file support for windows network shares
```ruby remote_file 'C:\Foo.tar.gz' do source "\\\\foohost\\fooshare\\Foo.tar.gz" end ```
Diffstat (limited to 'lib/chef/providers.rb')
-rw-r--r--lib/chef/providers.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/chef/providers.rb b/lib/chef/providers.rb
index a5f5386de3..18500d4669 100644
--- a/lib/chef/providers.rb
+++ b/lib/chef/providers.rb
@@ -122,6 +122,7 @@ require 'chef/provider/deploy/timestamped'
require 'chef/provider/remote_file/ftp'
require 'chef/provider/remote_file/http'
require 'chef/provider/remote_file/local_file'
+require 'chef/provider/remote_file/network_file'
require 'chef/provider/remote_file/fetcher'
require "chef/provider/lwrp_base"