summaryrefslogtreecommitdiff
path: root/lib/chef/provider
diff options
context:
space:
mode:
authorLamont Granquist <lamont@chef.io>2019-04-30 17:18:58 -0700
committerGitHub <noreply@github.com>2019-04-30 17:18:58 -0700
commit58bcea78cb99d5f0ec1abf6f4870a3c0b9b3a2db (patch)
tree5b5b59c97b0fcd5949e08d991dce05a990c1da36 /lib/chef/provider
parentdf1a3db1deff96233756f1b2f80f48ae477881d2 (diff)
parent9ea76290936316ce6fe2d40621581210b2006572 (diff)
downloadchef-58bcea78cb99d5f0ec1abf6f4870a3c0b9b3a2db.tar.gz
Merge pull request #8417 from jaymzh/link_message
file: Tell people what file a link is pointing at in warning messages
Diffstat (limited to 'lib/chef/provider')
-rw-r--r--lib/chef/provider/file.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/file.rb b/lib/chef/provider/file.rb
index 589a70de09..02da092418 100644
--- a/lib/chef/provider/file.rb
+++ b/lib/chef/provider/file.rb
@@ -228,7 +228,7 @@ class Chef
elsif file_class.symlink?(path) && new_resource.manage_symlink_source
verify_symlink_sanity(path)
elsif file_class.symlink?(new_resource.path) && new_resource.manage_symlink_source.nil?
- logger.warn("File #{path} managed by #{new_resource} is really a symlink. Managing the source file instead.")
+ logger.warn("File #{path} managed by #{new_resource} is really a symlink (to #{file_class.realpath(new_resource.path)}). Managing the source file instead.")
logger.warn("Disable this warning by setting `manage_symlink_source true` on the resource")
logger.warn("In a future Chef release, 'manage_symlink_source' will not be enabled by default")
verify_symlink_sanity(path)