X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b2e3e693bedea449c18753ab7c3be6676b72ca36..f9e3e2a61aca2a356d5e3f69b3f3f6f3c6986ce9:/roles/shenron.rb diff --git a/roles/shenron.rb b/roles/shenron.rb index c3db86355..03b2cedc3 100644 --- a/roles/shenron.rb +++ b/roles/shenron.rb @@ -10,29 +10,23 @@ default_attributes( } }, :hardware => { + :hwmon => { + "platform_it87_552" => { + :ignore => %w[in6] + } + }, :mcelog => { :enabled => false }, :modules => [ "it87" ] - }, - :openvpn => { - :address => "10.0.16.3", - :tunnels => { - :shenron2ucl => { - :port => "1194", - :mode => "server", - :peer => { - :host => "ridley.openstreetmap.org" - } - } - } } ) override_attributes( :networking => { + :dnssec => "false", :interfaces => { :external_ipv4 => { :interface => "eth0", @@ -51,7 +45,10 @@ override_attributes( :gateway => "fe80::1" } }, - :nameservers => ["89.16.162.20", "2001:41c9:2:d6::20"] + # Do not use Cloudflare Public DNS as it does not support ECS as required by https://www.spamhaus.org/organization/dnsblusage/ + # https://www.spamhaus.org/news/article/816/service-update-spamhaus-dnsbl-users-who-query-via-cloudflare-dns-need-to-make-changes-to-email-set-up + :nameservers => ["8.8.8.8", "8.8.4.4", "2001:4860:4860::8888", "2001:4860:4860::8844"], + :private_address => "10.0.16.100" } ) @@ -59,10 +56,5 @@ run_list( "role[bytemark]", "role[mail]", "role[lists]", - "role[subversion]", - "role[trac]", - "role[osqa]", - "role[irc]", - "recipe[blogs]", - "recipe[openvpn]" + "role[osqa]" )