X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/9014179b3f52fbef2647e6774afc88bafe6dfdf5..461fe290262e9b44cf3ac0a667392c4fc29cdc05:/cookbooks/geodns/recipes/default.rb diff --git a/cookbooks/geodns/recipes/default.rb b/cookbooks/geodns/recipes/default.rb index 8afa85cc5..90ae979be 100644 --- a/cookbooks/geodns/recipes/default.rb +++ b/cookbooks/geodns/recipes/default.rb @@ -27,6 +27,10 @@ package %w[ gdnsd ] +link "/etc/gdnsd/geoip/GeoLite2-Country.mmdb" do + to "#{node[:geoipupdate][:directory]}/GeoLite2-Country.mmdb" +end + directory "/etc/gdnsd/config.d" do owner "nobody" group "nogroup" @@ -90,16 +94,14 @@ end firewall_rule "accept-dns-udp" do action :accept - source "net" - dest "fw" - proto "udp" + context :incoming + protocol :udp dest_ports "domain" end firewall_rule "accept-dns-tcp" do action :accept - source "net" - dest "fw" - proto "tcp:syn" + context :incoming + protocol :tcp dest_ports "domain" end