X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/04075ae665769fe13b97b5586c46ab28a51cc9d3..b1b9d1a24cd4ec5bc9176af4342697a739db64e7:/cookbooks/networking/recipes/default.rb diff --git a/cookbooks/networking/recipes/default.rb b/cookbooks/networking/recipes/default.rb index afdbd7163..013037959 100644 --- a/cookbooks/networking/recipes/default.rb +++ b/cookbooks/networking/recipes/default.rb @@ -23,6 +23,8 @@ require "ipaddr" require "yaml" +package "netplan.io" + netplan = { "network" => { "version" => 2, @@ -210,7 +212,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]