]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/dns/recipes/default.rb
Include sshfp on DNS management host
[chef.git] / cookbooks / dns / recipes / default.rb
index 1896e99b82e99d0049e2ad6d8a2384f2111f222a..e613961fa8bdfdc8bf798fab12133e6a7139feb6 100644 (file)
@@ -34,8 +34,17 @@ package %w[
   libyaml-perl
   libwww-perl
   libjson-xs-perl
+  sshfp
 ]
 
+# remote_file "/usr/local/bin/dnscontrol" do
+#   action :create
+#   source "https://github.com/StackExchange/dnscontrol/releases/download/v2.10.0/dnscontrol-Linux"
+#   owner "root"
+#   group "root"
+#   mode 0o755
+# end
+
 directory "/srv/dns.openstreetmap.org" do
   owner "root"
   group "root"
@@ -109,6 +118,14 @@ directory "/var/lib/dns" do
   notifies :run, "execute[dns-update]"
 end
 
+template "/var/lib/dns/creds.json" do
+  source "creds.json.erb"
+  owner "git"
+  group "git"
+  mode 0o440
+  variables :passwords => passwords
+end
+
 cookbook_file "#{node[:dns][:repository]}/hooks/post-receive" do
   source "post-receive"
   owner "git"