X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/37543db1196a56ef10ad1870a0c83aeea6ffcc29..269b5b28ccf95dd4b96cac3f51168ea3280c83db:/cookbooks/dns/recipes/default.rb diff --git a/cookbooks/dns/recipes/default.rb b/cookbooks/dns/recipes/default.rb index 5b4743ef6..6bf913cb3 100644 --- a/cookbooks/dns/recipes/default.rb +++ b/cookbooks/dns/recipes/default.rb @@ -103,6 +103,13 @@ template "/usr/local/bin/dns-update" do variables :passwords => passwords, :geoservers => geoservers end +cookbook_file "/usr/local/bin/dns-update-sshfp" do + source "dns-update-sshfp" + owner "git" + group "git" + mode 0o750 +end + execute "dns-update" do action :nothing command "/usr/local/bin/dns-update" @@ -125,6 +132,14 @@ template "/var/lib/dns/creds.json" do variables :passwords => passwords end +execute "dns-update-sshfp" do + action :nothing + command "/usr/local/bin/dns-update-sshfp" + user "git" + group "git" + subscribes :run, "template[/etc/ssh/ssh_known_hosts]" +end + cookbook_file "#{node[:dns][:repository]}/hooks/post-receive" do source "post-receive" owner "git"