X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/65e6abb07c5af84f4ab23c76321dc202d3ce5947..90cf65550143edb0003250f509f3d07670648ee5:/cookbooks/dns/recipes/default.rb?ds=sidebyside diff --git a/cookbooks/dns/recipes/default.rb b/cookbooks/dns/recipes/default.rb index ddc0eb028..2f045a778 100644 --- a/cookbooks/dns/recipes/default.rb +++ b/cookbooks/dns/recipes/default.rb @@ -1,8 +1,8 @@ # -# Cookbook Name:: dns +# Cookbook:: dns # Recipe:: default # -# Copyright 2011, OpenStreetMap Foundation +# Copyright:: 2011, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -31,11 +31,21 @@ package %w[ perl libxml-treebuilder-perl libxml-writer-perl - libyaml-perl + libyaml-libyaml-perl libwww-perl libjson-xs-perl + lockfile-progs + sshfp ] +remote_file "/usr/local/bin/dnscontrol" do + action :create + source "https://github.com/StackExchange/dnscontrol/releases/download/v3.0.0/dnscontrol-Linux" + owner "root" + group "root" + mode 0o755 +end + directory "/srv/dns.openstreetmap.org" do owner "root" group "root" @@ -109,6 +119,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"