X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/030d3fdee8cdceceed1df37740b6177cb978eeba..2d6d56f75a35f748f19411b043b7fc430bdb3c6e:/roles/grifon.rb diff --git a/roles/grifon.rb b/roles/grifon.rb index bd830987d..e7bf0b295 100644 --- a/roles/grifon.rb +++ b/roles/grifon.rb @@ -2,17 +2,32 @@ name "grifon" description "Role applied to all servers at Grifon" default_attributes( + :accounts => { + :users => { + :alarig => { :status => :administrator }, + :gizmo => { :status => :administrator }, + :nemo => { :status => :administrator } + } + }, :hosted_by => "Grifon", - :location => "Paris, France", + :location => "Rennes, France", :munin => { :allow => ["2a00:5884::8"] }, :networking => { - :nameservers => ["2a00:5884::7"], - :roles => { - :external => { - :zone => "grf" - } + :firewall => { + :inet6 => [ + { + :action => "ACCEPT", + :source => "net:[2a00:5884::8]", + :dest => "fw", + :proto => "tcp", + :dest_ports => "munin", + :source_ports => "1024:", + :rate_limit => "-", + :connection_limit => "-" + } + ] } } )