summaryrefslogtreecommitdiff
path: root/RELEASE_NOTES.md
diff options
context:
space:
mode:
authorJay Mundrawala <jdmundrawala@gmail.com>2015-05-13 14:57:49 -0500
committerJay Mundrawala <jdmundrawala@gmail.com>2015-05-13 14:57:49 -0500
commitc46776d45cd5a732441a4dc0bf0552e71bb500ee (patch)
treeb835e8c9701cba989f4fc9dbcd5980c86cd6fd89 /RELEASE_NOTES.md
parentd25e63ccf8fe9d76cc69a7c4bf103684d9adfbc2 (diff)
downloadchef-c46776d45cd5a732441a4dc0bf0552e71bb500ee.tar.gz
Update release notes for #3336
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r--RELEASE_NOTES.md12
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
+```