X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/c08dfe1bf43b2f97baeb0631323256b1a13e18bf..ba31aca76710590cde7d2baa2fc9a4cd7beb0fa4:/roles/shenron.rb diff --git a/roles/shenron.rb b/roles/shenron.rb index 191c6429f..b5cb9d559 100644 --- a/roles/shenron.rb +++ b/roles/shenron.rb @@ -2,25 +2,24 @@ name "shenron" description "Master role applied to shenron" default_attributes( - :accounts => { - :users => { - :bretth => { - :status => :user, - :shell => "/usr/bin/git-shell" - }, - } - }, :apache => { :mpm => "event", :event => { - :max_requests_per_child => 2000 + :min_spare_threads => 50, + :max_spare_threads => 150 } }, :hardware => { + :mcelog => { + :enabled => false + }, :modules => [ "it87" - ], - }, + ] + } +) + +override_attributes( :networking => { :interfaces => { :external_ipv4 => { @@ -38,20 +37,10 @@ default_attributes( :address => "2001:41c9:1:400::32", :prefix => "64", :gateway => "fe80::1" - }, - } - }, - :openvpn => { - :address => "10.0.16.3", - :tunnels => { - :shenron2ucl => { - :port => "1194", - :mode => "server", - :peer => { - :host => "ridley.openstreetmap.org" - } } - } + }, + :nameservers => ["1.1.1.1", "1.0.0.1", "2606:4700:4700::1111", "2606:4700:4700::1001"], + :private_address => "10.0.16.100" } ) @@ -59,13 +48,9 @@ run_list( "role[bytemark]", "role[mail]", "role[lists]", - "role[git]", "role[subversion]", "role[trac]", "role[osqa]", "role[irc]", - "role[dns]", - "role[geodns]", - "role[chef-repository]", - "recipe[openvpn]" + "recipe[blogs]" )