diff options
Diffstat (limited to 'manifests/subsystem/initramfs.pp')
-rw-r--r-- | manifests/subsystem/initramfs.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/subsystem/initramfs.pp b/manifests/subsystem/initramfs.pp index acbf1b7..ad12ae2 100644 --- a/manifests/subsystem/initramfs.pp +++ b/manifests/subsystem/initramfs.pp @@ -1,7 +1,7 @@ class nodo::subsystem::initramfs( $keymap = hiera('nodo::initramfs::keymap', 'absent') ) { - # initramfs config + # Image config file { "/etc/kernel-img.conf": owner => "root", group => "root", @@ -10,7 +10,7 @@ class nodo::subsystem::initramfs( content => "do_initrd = Yes\n", } - # initramfs config + # Modules config file { "/etc/initramfs-tools/modules": owner => "root", group => "root", @@ -19,7 +19,7 @@ class nodo::subsystem::initramfs( source => "puppet:///modules/nodo/etc/initramfs-tools/modules", } - # keymap + # Keymap file { "/etc/initramfs-tools/conf.d/keymap.conf": ensure => $keymap, content => "KEYMAP=Y\n", @@ -28,7 +28,7 @@ class nodo::subsystem::initramfs( mode => 0644, } - # update initramfs when needed + # Update initramfs when needed exec { "update-initramfs -v -t -u": subscribe => [ File["/etc/initramfs-tools/modules"], File["/etc/modprobe.d/blacklist"], |