X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/7972e10cf11642f02bcab5a35d250fd8b4a21ae0..2505af56f777f142c1a9d076a7603041e9816217:/roles/chef-repository.rb diff --git a/roles/chef-repository.rb b/roles/chef-repository.rb index 31e354b24..55f62f6c6 100644 --- a/roles/chef-repository.rb +++ b/roles/chef-repository.rb @@ -4,22 +4,33 @@ description "Role applied to all chef repositories" default_attributes( :accounts => { :users => { + :jochen => { + :status => :user, + :shell => "/usr/bin/git-shell" + }, :lonvia => { :status => :user, :shell => "/usr/bin/git-shell" }, + :stereo => { + :status => :user, + :shell => "/usr/bin/git-shell" + }, :yellowbkpk => { :status => :user, :shell => "/usr/bin/git-shell" }, :chefrepo => { :status => :role, - :members => [ :tomh, :grant, :matt, :jburgess, :lonvia, :yellowbkpk ] + :members => [ + :tomh, :grant, :matt, :jburgess, :lonvia, :yellowbkpk, :bretth, :jochen, :stereo + ] } } }, :chef => { - :repository => "/var/lib/git/chef.git" + :public_repository => "/var/lib/git/public/chef.git", + :private_repository => "/var/lib/git/private/chef.git" } )