aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/grub.pp
blob: d6e141b88df51de8eeba5717019a6d81d3f7c3b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class nodo::utils::grub (
  $ensure = 'installed',
) {
  # Include this classe as xorriso is a dependency for grub-mkrescue, see
  # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=589532
  include nodo::utils::storage::iso

  package { [
    'grub2',

    # This allows grub-mkrescue image generation with PC BIOS-compatible images
    'grub-pc-bin',
  ]:
    ensure => $ensure,
  }
}