summaryrefslogtreecommitdiff
path: root/lib/chef/provider/file.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/provider/file.rb')
-rw-r--r--lib/chef/provider/file.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/chef/provider/file.rb b/lib/chef/provider/file.rb
index bb0762ceb7..7f85085eeb 100644
--- a/lib/chef/provider/file.rb
+++ b/lib/chef/provider/file.rb
@@ -154,7 +154,6 @@ class Chef
do_contents_changes
do_acl_changes
do_selinux
- do_resolv_conf_fixup
load_resource_attributes_from_file(@new_resource)
end
@@ -446,13 +445,6 @@ class Chef
end
end
- def do_resolv_conf_fixup
- # reload /etc/resolv.conf after we edit it -- only on linux -- and see lib/chef/application.rb
- if new_resource.path == "/etc/resolv.conf" && RbConfig::CONFIG["host_os"] =~ /linux/
- Resolv::DefaultResolver.replace_resolvers [Resolv::DNS.new("/etc/resolv.conf")]
- end
- end
-
def do_acl_changes
if access_controls.requires_changes?
converge_by(access_controls.describe_changes) do