aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/grub.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/utils/grub.pp')
-rw-r--r--manifests/utils/grub.pp7
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/utils/grub.pp b/manifests/utils/grub.pp
index 7cadc6b..d6e141b 100644
--- a/manifests/utils/grub.pp
+++ b/manifests/utils/grub.pp
@@ -1,8 +1,15 @@
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,
}