X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/a7d96c8358a00088b485fadb5966eb4b231d2ff1..c580104cc2296be4e5feddd87205d1d414e594d7:/roles/chef-repository.rb diff --git a/roles/chef-repository.rb b/roles/chef-repository.rb index 9e1815f13..511291426 100644 --- a/roles/chef-repository.rb +++ b/roles/chef-repository.rb @@ -4,6 +4,10 @@ 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" @@ -14,12 +18,15 @@ default_attributes( }, :chefrepo => { :status => :role, - :members => [ :tomh, :grant, :matt, :lonvia, :yellowbkpk ] + :members => [ + :tomh, :grant, :matt, :jburgess, :lonvia, :yellowbkpk, :bretth, :jochen + ] } } }, :chef => { - :repository => "/var/lib/git/chef.git" + :public_repository => "/var/lib/git/public/chef.git", + :private_repository => "/var/lib/git/private/chef.git" } )