aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation/manifests/grub.pp
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-07-14 10:49:21 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-07-14 11:20:15 +0200
commit220496056eb730f204f9d21d61d10d41d876c5a1 (patch)
tree8c567596f7cbe61d1c2acc7559284252841ce268 /modules/base_installation/manifests/grub.pp
parent1b2e270afc9da7bbab85e0d729d317a97cca962f (diff)
downloadPuppet-220496056eb730f204f9d21d61d10d41d876c5a1.tar.gz
Puppet-220496056eb730f204f9d21d61d10d41d876c5a1.tar.zst
Puppet-220496056eb730f204f9d21d61d10d41d876c5a1.zip
Fix package dependencies for base installation
Diffstat (limited to 'modules/base_installation/manifests/grub.pp')
-rw-r--r--modules/base_installation/manifests/grub.pp7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/base_installation/manifests/grub.pp b/modules/base_installation/manifests/grub.pp
index 0a96aa7..208b745 100644
--- a/modules/base_installation/manifests/grub.pp
+++ b/modules/base_installation/manifests/grub.pp
@@ -9,9 +9,10 @@ class base_installation::grub inherits base_installation {
9 # } 9 # }
10 10
11 file_line { "/etc/default/grub#GRUB_CMDLINE_LINUX": 11 file_line { "/etc/default/grub#GRUB_CMDLINE_LINUX":
12 path => "/etc/default/grub", 12 path => "/etc/default/grub",
13 line => 'GRUB_CMDLINE_LINUX=" console=tty0 console=ttyS0,115200"', 13 line => 'GRUB_CMDLINE_LINUX=" console=tty0 console=ttyS0,115200"',
14 match => '^GRUB_CMDLINE_LINUX=' 14 match => '^GRUB_CMDLINE_LINUX=',
15 require => Package["grub"],
15 } 16 }
16 17
17 # exec { 'update GRUB config': 18 # exec { 'update GRUB config':