diff options
author | Jay Mundrawala <jdmundrawala@gmail.com> | 2015-05-13 14:57:49 -0500 |
---|---|---|
committer | Jay Mundrawala <jdmundrawala@gmail.com> | 2015-05-13 14:57:49 -0500 |
commit | c46776d45cd5a732441a4dc0bf0552e71bb500ee (patch) | |
tree | b835e8c9701cba989f4fc9dbcd5980c86cd6fd89 /RELEASE_NOTES.md | |
parent | d25e63ccf8fe9d76cc69a7c4bf103684d9adfbc2 (diff) | |
download | chef-c46776d45cd5a732441a4dc0bf0552e71bb500ee.tar.gz |
Update release notes for #3336
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r-- | RELEASE_NOTES.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 40308484dd..5387870856 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -21,3 +21,15 @@ log_location Chef::Log::WinEvt.new ``` This will write to the Application log with the source set as Chef. + +## RemoteFile resource supports UNC paths on Windows + +You can now use UNC paths with `remote_file` on Windows machines. For +example, you can get `Foo.tar.gz` off of `fooshare` on `foohost` using +the following resource: + +```ruby +remote_file 'C:\Foo.tar.gz' do + source "\\\\foohost\\fooshare\\Foo.tar.gz" +end +``` |