diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-31 19:40:21 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-31 19:40:21 -0200 |
commit | d96ffbc4736d1ec3d50a1a888233201b7df5dc9d (patch) | |
tree | 5c21e353816371e06f0854238809cbc6f381c152 /manifests/subsystems | |
parent | f48e2bf0fc2ed2c7a6f88c5224a3c6cdda3863ad (diff) | |
download | puppet-nodo-d96ffbc4736d1ec3d50a1a888233201b7df5dc9d.tar.gz puppet-nodo-d96ffbc4736d1ec3d50a1a888233201b7df5dc9d.tar.bz2 |
Removing /etc/default/keyboard ref
Diffstat (limited to 'manifests/subsystems')
-rw-r--r-- | manifests/subsystems/initramfs.pp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/manifests/subsystems/initramfs.pp b/manifests/subsystems/initramfs.pp index 58e5c71..17296a2 100644 --- a/manifests/subsystems/initramfs.pp +++ b/manifests/subsystems/initramfs.pp @@ -28,21 +28,11 @@ class initramfs( 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"], - File["/etc/initramfs-tools/conf.d/keymap.conf"], - File["/etc/default/keyboard"] ], + File["/etc/initramfs-tools/conf.d/keymap.conf"] ], refreshonly => true, alias => 'update-initramfs', } |