]> git.openstreetmap.org Git - chef.git/blob - cookbooks/geodns/recipes/default.rb
Don't disable systemd-resolved on geodns machines
[chef.git] / cookbooks / geodns / recipes / default.rb
1 #
2 # Cookbook Name:: geodns
3 # Recipe:: default
4 #
5 # Copyright 2011, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     https://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 package %w[
21   geoipupdate
22   gdnsd
23 ]
24
25 execute "geoipdate" do
26   command "geoipupdate"
27   user "root"
28   group "root"
29   not_if { ::File.exist?("/var/lib/GeoIP/GeoLite2-Country.mmdb") }
30 end
31
32 template "/etc/gdnsd/config" do
33   source "config.erb"
34   owner "root"
35   group "root"
36   mode 0o644
37   notifies :restart, "service[gdnsd]"
38 end
39
40 template "/etc/gdnsd/zones/geo.openstreetmap.org" do
41   source "geo.erb"
42   owner "root"
43   group "root"
44   mode 0o644
45   notifies :restart, "service[gdnsd]"
46 end
47
48 service "gdnsd" do
49   action [:enable, :start]
50   supports :status => true, :restart => true, :reload => true
51 end
52
53 firewall_rule "accept-dns-udp" do
54   action :accept
55   source "net"
56   dest "fw"
57   proto "udp"
58   dest_ports "domain"
59 end
60
61 firewall_rule "accept-dns-tcp" do
62   action :accept
63   source "net"
64   dest "fw"
65   proto "tcp:syn"
66   dest_ports "domain"
67 end