]> git.openstreetmap.org Git - chef.git/blob - cookbooks/hardware/templates/default/grub.erb
d69a870b9cf862874bc3d69abe4b2bb92b670f8d
[chef.git] / cookbooks / hardware / templates / default / grub.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 # Boot the first entry by default, unless we have configured
4 # it to boot a specific version.
5 <% if node[:hardware][:grub][:kernel] == :latest %>
6 GRUB_DEFAULT="0"
7 <% else
8   df = Mixlib::ShellOut.new("df /boot/grub/grub.cfg | tail -n 1 | awk '{print $1;}'")
9   df.run_command
10   df.error!
11   root=df.stdout
12
13   blkid = Mixlib::ShellOut.new("blkid -o value -s UUID #{root}")
14   blkid.run_command
15   blkid.error!
16   uuid=blkid.stdout
17
18   version="#{node[:hardware][:grub][:kernel]}-generic" %>
19 GRUB_DEFAULT="gnulinux-advanced-<%= uuid %>>gnulinux-<%= version %>-advanced-<%= uuid %>"
20 <% end %>
21
22 # Wait two seconds before booting the default entry
23 GRUB_TIMEOUT="2"
24
25 # Display the menu straight away
26 GRUB_HIDDEN_TIMEOUT="0"
27 GRUB_HIDDEN_TIMEOUT_QUIET="true"
28
29 # Set the distribution name
30 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
31
32 # Arguments to add to the kernel command line (all entries)
33 <% if @unit.nil? -%>
34 GRUB_CMDLINE_LINUX="<%= node[:hardware][:grub][:cmdline].join(" ") %>"
35 <% else -%>
36 GRUB_CMDLINE_LINUX="console=tty0 console=ttyS<%= @unit %>,115200n8 <%= node[:hardware][:grub][:cmdline].join(" ") %>"
37 <% end -%>
38
39 # Arguments to add to the kernel command line (except recovery entries)
40 GRUB_CMDLINE_LINUX_DEFAULT="panic=30"
41
42 # Do not wait for infinite time on a failed boot
43 GRUB_RECORDFAIL_TIMEOUT=2
44
45 <% if @unit.nil? -%>
46 # Send console output to the screen
47 GRUB_TERMINAL="console"
48 <% else -%>
49 <% if node[:lsb][:release].to_f >= 12.04 -%>
50 # Send console output to the screen and serial port
51 GRUB_TERMINAL="console serial"
52 <% else -%>
53 # Send console output to the serial port
54 GRUB_TERMINAL="serial"
55 <% end -%>
56
57 # Configure the serial console
58 GRUB_SERIAL_COMMAND="serial --speed=<%= @speed %> --unit=<%= @unit %> --word=8 --parity=no --stop=1"
59 <% end -%>