diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-31 15:30:44 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-31 15:30:44 -0200 |
commit | c0c38faca2843d5f7b0c9b11a3a2abdfd2bd2d45 (patch) | |
tree | f032089236b83b0e1147b69611f6b1ffdfa2b40c /manifests/subsystems/initramfs.pp | |
parent | fedb88509e093c055d60938a8331fba497797a2a (diff) | |
download | puppet-nodo-c0c38faca2843d5f7b0c9b11a3a2abdfd2bd2d45.tar.gz puppet-nodo-c0c38faca2843d5f7b0c9b11a3a2abdfd2bd2d45.tar.bz2 |
PAM and initramfs config for wheezy
Diffstat (limited to 'manifests/subsystems/initramfs.pp')
-rw-r--r-- | manifests/subsystems/initramfs.pp | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/manifests/subsystems/initramfs.pp b/manifests/subsystems/initramfs.pp index 0a8d49b..58e5c71 100644 --- a/manifests/subsystems/initramfs.pp +++ b/manifests/subsystems/initramfs.pp @@ -1,4 +1,6 @@ -class initramfs { +class initramfs( + $keymap = hiera('nodo::initramfs::keymap', 'absent') +) { # initramfs config file { "/etc/kernel-img.conf": owner => "root", @@ -17,9 +19,30 @@ class initramfs { source => "puppet:///modules/nodo/etc/initramfs-tools/modules", } + # keymap + file { "/etc/initramfs-tools/conf.d/keymap.conf": + ensure => $keymap, + content => "KEYMAP=Y\n", + owner => "root", + group => "root", + mode => 0644, + } + + # keyboard + # see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=619711 + file { "/etc/default/keyboard": + ensure => present, + owner => "root", + group => "root", + mode => 0644, + } + # update initramfs when needed exec { "update-initramfs -v -t -u": - subscribe => [ File["/etc/initramfs-tools/modules"], File["/etc/modprobe.d/blacklist"] ], + subscribe => [ File["/etc/initramfs-tools/modules"], + File["/etc/modprobe.d/blacklist"], + File["/etc/initramfs-tools/conf.d/keymap.conf"], + File["/etc/default/keyboard"] ], refreshonly => true, alias => 'update-initramfs', } |