]> git.openstreetmap.org Git - chef.git/blob - roles/ucl.rb
Fix munin for UCL nodes with no internal address
[chef.git] / roles / ucl.rb
1 name "ucl"
2 description "Role applied to all servers at UCL"
3
4 default_attributes(
5   :bind => {
6     :forwarders => [ "144.82.100.1", "144.82.100.41" ]
7   },
8   :sysctl => {
9     :sack => {
10       :comment => "Disable SACK as the UCL firewall breaks it",
11       :parameters => { 
12         "net.ipv4.tcp_sack" => "0"
13       }
14     }
15   }
16 )
17
18 override_attributes(
19   :ntp => {
20     :servers => [ "ntp1.ucl.ac.uk", "ntp2.ucl.ac.uk" ]
21   }
22 )
23
24 run_list(
25   "role[gb]"
26 )