X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/f6cb433b825720b178c1452fe7b829437a11fa8c..204405570f4bf5e8a2b0400d000fc364e5e56f74:/cookbooks/networking/recipes/default.rb diff --git a/cookbooks/networking/recipes/default.rb b/cookbooks/networking/recipes/default.rb index bd8517087..89e8198e2 100644 --- a/cookbooks/networking/recipes/default.rb +++ b/cookbooks/networking/recipes/default.rb @@ -195,6 +195,7 @@ template "/etc/hosts" do owner "root" group "root" mode 0o644 + not_if { ENV["TEST_KITCHEN"] } end service "systemd-resolved" do @@ -212,7 +213,18 @@ template "/etc/systemd/resolved.conf.d/99-chef.conf" do owner "root" group "root" mode 0o644 - notifies :restart, "service[systemd-resolved]" + notifies :restart, "service[systemd-resolved]", :immediately +end + +if node[:filesystem][:by_mountpoint][:"/etc/resolv.conf"] + mount "/etc/resolv.conf" do + action :umount + device node[:filesystem][:by_mountpoint][:"/etc/resolv.conf"][:devices].first + end +end + +link "/etc/resolv.conf" do + to "../run/systemd/resolve/stub-resolv.conf" end if node[:networking][:tcp_fastopen_key]