X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/6df7b8de1d8eeca6dba965c52456322eb2e11cf1..ff6e215ca12d2efe3493da1eb0152751ceef7162:/roles/dev.rb diff --git a/roles/dev.rb b/roles/dev.rb index 17b5c4726..108d2ed17 100644 --- a/roles/dev.rb +++ b/roles/dev.rb @@ -5,7 +5,7 @@ default_attributes( :accounts => { :users => { :edgemaster => { :status => :administrator }, - :emacsen => { :status => :administrator }, + :emacsen => { :status => :user }, :twain => { :status => :user }, :bretth => { :status => :user }, :richard => { :status => :user }, @@ -58,6 +58,7 @@ default_attributes( :cobra => { :status => :user }, :ppawel => { :status => :user }, :simon04 => { :status => :user }, + :jeslop => { :status => :user }, :jfire => { :status => :user }, :malenki => { :status => :user }, :lonvia => { :status => :user }, @@ -67,6 +68,9 @@ default_attributes( :mhohmann => { :status => :user }, :enelson => { :status => :user }, :gregrs => { :status => :user }, + :stereo => { :status => :user }, + :dmlu => { :status => :user }, + :antonkh => { :status => :user }, :ooc => { :status => :role, :members => [:tomh, :blackadder, :timsc, :ollie] @@ -95,53 +99,51 @@ default_attributes( :max_connections_per_child => 10000 } }, - :apt => { - :sources => ["postgresql"] - }, :dev => { :rails => { :master => { :repository => "https://git.openstreetmap.org/public/rails.git", :revision => "master", - :cgimap_repository => "git://github.com/zerebubuth/openstreetmap-cgimap.git", + :cgimap_repository => "https://github.com/zerebubuth/openstreetmap-cgimap.git", :cgimap_revision => "master", :aliases => ["api06.dev.openstreetmap.org"] }, :tomh => { - :repository => "git://github.com/tomhughes/openstreetmap-website.git", + :repository => "https://github.com/tomhughes/openstreetmap-website.git", :revision => "next" }, :comments => { - :repository => "git://github.com/ukasiu/openstreetmap-website.git", + :repository => "https://github.com/ukasiu/openstreetmap-website.git", :revision => "comments_list" }, :locale => { - :repository => "git://github.com/tomhughes/openstreetmap-website.git", + :repository => "https://github.com/tomhughes/openstreetmap-website.git", :revision => "locale" }, - :upload => { - :repository => "https://git.openstreetmap.org/public/rails.git", - :revision => "master", - :cgimap_repository => "git://github.com/zerebubuth/openstreetmap-cgimap.git", - :cgimap_revision => "feature/bulk_upload" + :microcosms => { + :repository => "https://github.com/openbrian/osm-microcosms.git", + :revision => "microcosms" } } }, + :exim => { + :smarthost_via => "fafnir.openstreetmap.org:26" + }, :postgresql => { - :versions => ["9.1", "9.5"], + :versions => ["14"], :settings => { :defaults => { + :max_connections => "500", :shared_buffers => "1GB", :work_mem => "32MB", :maintenance_work_mem => "64MB", :max_stack_depth => "4MB", :effective_cache_size => "4GB" }, - "9.1" => { - :port => "5433" - }, - "9.5" => { - :port => "5432" + "14" => { + :port => "5432", + :wal_level => "logical", + :max_replication_slots => "1" } } }, @@ -153,6 +155,9 @@ default_attributes( "kernel.shmmax" => "17179869184" } } + }, + :openssh => { + :password_authentication => true } )