]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/networking/recipes/default.rb
Update bundle
[chef.git] / cookbooks / networking / recipes / default.rb
index d9e264cd9c0dd3ece32ee5f53fcc73d1f8f8b4bd..6031ef508f6ed1a842bebe0e9782580bfe742493 100644 (file)
@@ -215,6 +215,17 @@ template "/etc/systemd/resolved.conf.d/99-chef.conf" do
   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]
   fastopen_keys = data_bag_item("networking", "fastopen")