aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/grub.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2022-06-12 15:39:48 -0300
committerSilvio Rhatto <rhatto@riseup.net>2022-06-12 15:39:48 -0300
commite73ca7308f237a2edfd7c56b23bad3e7970118ea (patch)
tree70ac420d6a21b83dc0b953bafe2e0d896fa40afe /manifests/utils/grub.pp
parent50d174faffe55cd5c8394f94e339deb49c36e09c (diff)
downloadpuppet-nodo-e73ca7308f237a2edfd7c56b23bad3e7970118ea.tar.gz
puppet-nodo-e73ca7308f237a2edfd7c56b23bad3e7970118ea.tar.bz2
Management of grub-pc-bin and xorriso
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,
}