]> git.openstreetmap.org Git - chef.git/blob - roles/git.rb
Tile: switch bunyip, fume, gorynych, jakelong, lurien, nepomuk & trogdor to yevaud...
[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       :git => {
16         :status => :role,
17         :members => [ :tomh, :grant, :matt, :lonvia, :translatewiki ]
18       }
19     }
20   },
21   :git => {
22     :host => "git.openstreetmap.org",
23     :directory => "/var/lib/git"
24   }
25 )
26
27 run_list(
28   "recipe[git::server]"
29 )