]> git.openstreetmap.org Git - chef.git/blob - roles/git.rb
Manage new notification tables in the main database
[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       :bretth => {
8         :status => :user,
9         :shell => "/usr/bin/git-shell"
10       },
11       :lonvia => {
12         :status => :user,
13         :shell => "/usr/bin/git-shell"
14       },
15       :pnorman => {
16         :status => :user,
17         :shell => "/usr/bin/git-shell"
18       },
19       :stereo => {
20         :status => :user,
21         :shell => "/usr/bin/git-shell"
22       },
23       :yellowbkpk => {
24         :status => :user,
25         :shell => "/usr/bin/git-shell"
26       }
27     },
28     :groups => {
29       :git => {
30         :members => [:tomh, :grant, :matt, :lonvia, :yellowbkpk, :stereo, :pnorman]
31       }
32     }
33   },
34   :git => {
35     :host => "git.openstreetmap.org",
36     :aliases => ["git.osm.org"]
37   }
38 )
39
40 run_list(
41   "recipe[git::server]",
42   "recipe[git::web]"
43 )