X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b59e330e5f5c5057ecb27088a0d0c7c4f5c0ec22..146cc7980d205833ae4f63b3a12ee9b65fad0144:/roles/chef-repository.rb diff --git a/roles/chef-repository.rb b/roles/chef-repository.rb index b9ad2b466..55f62f6c6 100644 --- a/roles/chef-repository.rb +++ b/roles/chef-repository.rb @@ -4,24 +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, :bretth + :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" } )