]> git.openstreetmap.org Git - chef.git/blob - roles/norbert.rb
Make maswan an admin on umu machines
[chef.git] / roles / norbert.rb
1 name "norbert"
2 description "Master role applied to norbert"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :external_ipv4 => {
8         :interface => "ens18",
9         :role => :external,
10         :family => :inet,
11         :address => "89.234.186.100",
12         :prefix => "27",
13         :gateway => "89.234.186.97"
14       },
15       :external_ipv6 => {
16         :interface => "ens18",
17         :role => :external,
18         :family => :inet6,
19         :address => "2a00:5884:821c::1",
20         :prefix => "48",
21         :gateway => "fe80::204:92:100:1"
22       }
23     }
24   },
25   :squid => {
26     :cache_mem => "7500 MB",
27     :cache_dir => "coss /store/squid/coss-01 80000 block-size=8192 max-size=262144 membufs=80"
28   },
29   :tilecache => {
30     :tile_parent => "france.render.openstreetmap.org",
31     :tile_siblings => [
32       "noomoahk.openstreetmap.org",
33       "nepomuk.openstreetmap.org",
34       "necrosan.openstreetmap.org",
35       "ladon.openstreetmap.org",
36       "culebre.openstreetmap.org"
37     ]
38   }
39 )
40
41 run_list(
42   "role[grifon]",
43   "role[tilecache]"
44 )