]> git.openstreetmap.org Git - chef.git/blob - cookbooks/hardware/recipes/default.rb
Install git when needed
[chef.git] / cookbooks / hardware / recipes / default.rb
1 #
2 # Cookbook Name:: hardware
3 # Recipe:: default
4 #
5 # Copyright 2012, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 case node[:cpu][:"0"][:vendor_id]
21 when "GenuineIntel"
22   package "intel-microcode"
23 end
24
25 if node[:dmi] and node[:dmi][:system]
26   case node[:dmi][:system][:manufacturer]
27   when "empty"
28     manufacturer = node[:dmi][:base_board][:manufacturer]
29     product = node[:dmi][:base_board][:product_name]
30   else
31     manufacturer = node[:dmi][:system][:manufacturer]
32     product = node[:dmi][:system][:product_name]
33   end
34 else
35   manufacturer = "Unknown"
36   product = "Unknown"
37 end
38
39 case manufacturer
40 when "HP"
41   package "hponcfg"
42   package "hp-health"
43   package "hpacucli"
44   unit = "1"
45   speed = "115200"
46 when "TYAN"
47   unit = "0"
48   speed = "115200"
49 when "TYAN Computer Corporation"
50   unit = "0"
51   speed = "115200"
52 when "Supermicro"
53   case product
54   when "H8DGU", "X9SCD", "X7DBU", "X7DW3", "X9DR7/E-(J)LN4F", "X9DR3-F"
55     unit = "1"
56     speed = "115200"
57   else
58     unit = "0"
59     speed = "115200"
60   end
61 when "IBM"
62   unit = "0"
63   speed = "115200"
64 end
65
66 if manufacturer == "HP" and node[:lsb][:release].to_f > 11.10
67   include_recipe "git"
68
69   git "/opt/hp/hp-legacy" do
70     action :sync
71     repository "git://chef.openstreetmap.org/hp-legacy.git"
72     user "root"
73     group "root"
74   end
75
76   link "/opt/hp/hp-health/bin/hpasmd" do
77     to "/opt/hp/hp-legacy/hpasmd"
78   end
79
80   link "/usr/lib/libhpasmintrfc.so.3.0" do
81     to "/opt/hp/hp-legacy/libhpasmintrfc.so.3.0"
82   end
83
84   link "/usr/lib/libhpasmintrfc.so.3" do
85     to "libhpasmintrfc.so.3.0"
86   end
87
88   link "/usr/lib/libhpasmintrfc.so" do
89     to "libhpasmintrfc.so.3.0"
90   end
91 end
92
93 unless unit.nil?
94   file "/etc/init/ttySttyS#{unit}.conf" do
95     action :delete
96   end
97
98   template "/etc/init/ttyS#{unit}.conf" do
99     source "tty.conf.erb"
100     owner "root"
101     group "root"
102     mode 0644
103     variables :unit => unit, :speed => speed
104   end
105
106   service "ttyS#{unit}" do
107     provider Chef::Provider::Service::Upstart
108     action [ :enable, :start ]
109     supports :status => true, :restart => true, :reload => false
110     subscribes :restart, resources(:template => "/etc/init/ttyS#{unit}.conf")
111   end
112 end
113
114 if File.exist?("/etc/default/grub")
115   execute "update-grub" do
116     action :nothing
117     command "/usr/sbin/update-grub"
118   end
119
120   template "/etc/default/grub" do
121     source "grub.erb"
122     owner "root"
123     group "root"
124     mode 0644
125     variables :unit => unit, :speed => speed
126     notifies :run, resources(:execute => "update-grub")
127   end
128 end
129
130 execute "update-initramfs" do
131   action :nothing
132   command "update-initramfs -u -k all"
133   user "root"
134   group "root"
135 end
136
137 template "/etc/initramfs-tools/conf.d/mdadm" do
138   source "initramfs-mdadm.erb"
139   owner "root"
140   group "root"
141   mode 0644
142   notifies :run, "execute[update-initramfs]"
143 end
144
145 if node[:kernel][:modules].include?("mpt2sas")
146   package "sas2ircu"
147   package "sas2ircu-status"
148 end