X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/09970bb6b0540589725afa90d9f0514c980ebdc9..6c92319de16d70a02efabb29a4ea2d84e83b8acc:/roles/dev.rb diff --git a/roles/dev.rb b/roles/dev.rb index faecec2a1..99c29598d 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,12 @@ default_attributes( :mhohmann => { :status => :user }, :enelson => { :status => :user }, :gregrs => { :status => :user }, + :stereo => { :status => :user }, + :dmlu => { :status => :user }, + :antonkh => { :status => :user }, + :gmoncrieff => { :status => :user }, + :zander => { :status => :user }, + :msbarry => { :status => :user }, :ooc => { :status => :role, :members => [:tomh, :blackadder, :timsc, :ollie] @@ -82,6 +89,10 @@ default_attributes( :gpsmid => { :status => :role, :members => [:apmon, :maba] + }, + :"za-imagery" => { + :status => :role, + :members => [:grant, :htonl, :gmoncrieff, :zander] } } }, @@ -95,57 +106,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" }, - :rails6 => { - :repository => "git://github.com/tomhughes/openstreetmap-website.git", - :revision => "rails6" - }, :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" + }, + :rails71 => { + :repository => "https://github.com/tomhughes/openstreetmap-website.git", + :revision => "rails71" } } }, :postgresql => { - :versions => ["9.1", "9.5"], + :versions => ["15"], :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" + "15" => { + :port => "5432", + :wal_level => "logical" } } }, @@ -157,6 +162,9 @@ default_attributes( "kernel.shmmax" => "17179869184" } } + }, + :openssh => { + :password_authentication => true } )