]> git.openstreetmap.org Git - chef.git/blob - roles/wiki-old.rb
Switch bunyip to orm as tilecache parent
[chef.git] / roles / wiki-old.rb
1 name "wiki-old"
2 description "Role applied to all wiki servers"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :wiki => { :status => :role }
8     }
9   },
10   :exim => {
11     :trusted_users => [ "www-data" ],
12     :aliases => {
13       :root => "grant"
14     }
15   },
16   :memcached => {
17     :tcp_port => 11000,
18     :udp_port => 11000,
19     :memory_limit => 512,
20     :connection_limit => 8192,
21     :chunk_growth_factor => 1.05,
22     :min_item_size => 5
23   }
24 )
25
26 run_list(
27   "recipe[mediawiki-old]"
28 )