]> git.openstreetmap.org Git - chef.git/blob - roles/forum.rb
Move wiki admin password to wiki cookbook
[chef.git] / roles / forum.rb
1 name "forum"
2 description "Role applied to all forum servers"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :lambertus => {
8         :status => :administrator 
9       },
10       :forum => {
11         :status => :role,
12         :members => [ :lambertus, :grant ]
13       }
14     }
15   },
16   :apache => {
17     :mpm => "prefork",
18     :timeout => 60,
19     :keepalive => false,
20     :prefork => {
21       :start_servers => 20,
22       :min_spare_servers => 20,
23       :max_spare_servers => 50,
24       :max_clients => 256,
25     }
26   }
27 )
28
29 run_list(
30   "recipe[forum]"
31 )