1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
class nodo::subsystem::initramfs(
$keymap = absent,
) {
# Image config
file { "/etc/kernel-img.conf":
owner => "root",
group => "root",
mode => '0644',
ensure => present,
content => "do_initrd = Yes\n",
}
# Modules config
file { "/etc/initramfs-tools/modules":
owner => "root",
group => "root",
mode => '0644',
ensure => present,
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',
}
# Weird fix
# This is a bug that might be submited upstream to debian or initramfs-tools
file { "/etc/initramfs-tools/hooks/fix-fixme":
owner => "root",
group => "root",
mode => '0755',
ensure => present,
source => "puppet:///modules/nodo/etc/initramfs-tools/hooks/fix-fixme",
}
# Update initramfs when needed
exec { "update-initramfs":
command => "update-initramfs -v -t -u",
subscribe => [ File["/etc/initramfs-tools/modules"],
File["/etc/modprobe.d/blacklist.conf"],
File["/etc/initramfs-tools/conf.d/keymap.conf"],
File["/etc/initramfs-tools/hooks/fix-fixme"],
],
refreshonly => true,
}
}
|