X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/bdc899b26b43d13ba967d400447b9cd4f45c1ac5..2835205c501da417ff80ce4f06dc32d14c8c38bb:/roles/git.rb diff --git a/roles/git.rb b/roles/git.rb index 048490aac..c401c865f 100644 --- a/roles/git.rb +++ b/roles/git.rb @@ -4,6 +4,10 @@ description "Role applied to all git servers" default_attributes( :accounts => { :users => { + :bretth => { + :status => :user, + :shell => "/usr/bin/git-shell" + }, :lonvia => { :status => :user, :shell => "/usr/bin/git-shell" @@ -12,15 +16,19 @@ default_attributes( :status => :user, :shell => "/usr/bin/git-shell" }, + :stereo => { + :status => :user, + :shell => "/usr/bin/git-shell" + }, :git => { :status => :role, - :members => [:tomh, :grant, :matt, :lonvia, :yellowbkpk] + :members => [:tomh, :grant, :matt, :lonvia, :yellowbkpk, :stereo] } } }, :git => { :host => "git.openstreetmap.org", - :backup => "git" + :aliases => ["git.osm.org"] } )