]> git.openstreetmap.org Git - chef.git/blob - roles/culebre.rb
Make exim trust the rails users on all web machines
[chef.git] / roles / culebre.rb
1 name "culebre"
2 description "Master role applied to culebre"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :external_ipv4 => {
8         :interface => "ens3",
9         :role => :external,
10         :family => :inet,
11         :address => "155.210.4.103",
12         :prefix => "28",
13         :gateway => "155.210.4.110"
14       },
15       :internal_ipv4 => {
16         :interface => "ens4",
17         :role => :internal,
18         :family => :inet,
19         :address => "10.148.97.151",
20         :prefix => "24"
21       }
22     }
23   },
24   :squid => {
25     :cache_mem => "6100 MB",
26     :cache_dir => "coss /store/squid/coss-01 80000 block-size=8192 max-size=262144 membufs=80"
27   },
28   :tilecache => {
29     :tile_parent => "zaragoza.render.openstreetmap.org",
30     :tile_siblings => [
31       "trogdor.openstreetmap.org",
32       "katie.openstreetmap.org",
33       "konqi.openstreetmap.org",
34       "ridgeback.openstreetmap.org",
35       "gorynych.openstreetmap.org"
36     ]
37   }
38 )
39
40 run_list(
41   "role[unizar]",
42   "role[tilecache]"
43 )