X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ff044920428608b2c04507ad52d6ab52c9d6555f..8a4a9679c8e490910bded7466efe9b46ed23884a:/roles/chef-repository.rb diff --git a/roles/chef-repository.rb b/roles/chef-repository.rb index 525f619ba..55f62f6c6 100644 --- a/roles/chef-repository.rb +++ b/roles/chef-repository.rb @@ -4,10 +4,18 @@ 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" @@ -15,13 +23,14 @@ default_attributes( :chefrepo => { :status => :role, :members => [ - :tomh, :grant, :matt, :jburgess, :lonvia, :yellowbkpk, :bretth + :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" } )