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"
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"