default[:hardware][:modules] = %w(loop lp rtc)
default[:hardware][:grub][:cmdline] = %w(nomodeset)
+default[:hardware][:grub][:kernel] = :latest
default[:hardware][:sensors] = {}
if node[:dmi] && node[:dmi][:system]
end
end
+# if we need a different / special kernel version to make the hardware
+# work (e.g: https://github.com/openstreetmap/operations/issues/45) then
+# ensure that we have the package installed. the grub template will
+# make sure that this is the default on boot.
+unless node[:hardware][:grub][:kernel] == :latest
+ package "linux-image-#{node[:hardware][:grub][:kernel]}-generic"
+ package "linux-image-extra-#{node[:hardware][:grub][:kernel]}-generic"
+ package "linux-headers-#{node[:hardware][:grub][:kernel]}-generic"
+end
+
if File.exist?("/etc/default/grub")
execute "update-grub" do
action :nothing
# DO NOT EDIT - This file is being maintained by Chef
-# Boot the first entry by default
+# Boot the first entry by default, unless we have configured
+# it to boot a specific version.
+<% if node[:hardware][:grub][:kernel] == :latest %>
GRUB_DEFAULT="0"
+<% else
+ df = Mixlib::ShellOut.new("df /boot/grub/grub.cfg | tail -n 1 | awk '{print $1;}'")
+ df.run_command
+ df.error!
+ root=df.stdout
+
+ blkid = Mixlib::ShellOut.new("blkid -o value -s UUID #{root}")
+ blkid.run_command
+ blkid.error!
+ uuid=blkid.stdout
+
+ version="#{node[:hardware][:grub][:kernel]}-generic" %>
+GRUB_DEFAULT="gnulinux-advanced-<%= uuid %>>gnulinux-<%= version %>-advanced-<%= uuid %>"
+<% end %>
# Wait two seconds before booting the default entry
GRUB_TIMEOUT="2"
:redirects => {
:reverse => "poldi.openstreetmap.org"
}
+ },
+ :hardware => {
+ :grub => {
+ # lock kernel to 3.16.0-46 due to some issue with igb driver
+ # see https://github.com/openstreetmap/operations/issues/45
+ # for more information.
+ :kernel => "3.16.0-46"
+ }
}
)