]> git.openstreetmap.org Git - chef.git/blob - roles/git.rb
decrease fpm pool size to relieve postgres load
[chef.git] / roles / git.rb
1 name "git"
2 description "Role applied to all git servers"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :lonvia => {
8         :status => :user,
9         :shell => "/usr/bin/git-shell"
10       },
11       :translatewiki => {
12         :status => :user,
13         :shell => "/usr/bin/git-shell"
14       },
15       :yellowbkpk => {
16         :status => :user,
17         :shell => "/usr/bin/git-shell"
18       },
19       :git => {
20         :status => :role,
21         :members => [ :tomh, :grant, :matt, :lonvia, :yellowbkpk, :translatewiki ]
22       }
23     }
24   },
25   :git => {
26     :host => "git.openstreetmap.org",
27     :backup => "git"
28   }
29 )
30
31 run_list(
32   "recipe[git::server]",
33   "recipe[git::web]"
34 )