--- /dev/null
+#!/bin/sh
+PREREQ="cryptroot"
+prereqs()
+{
+ echo "$PREREQ"
+}
+
+case $1 in
+ prereqs)
+ prereqs
+ exit 0
+ ;;
+esac
+
+. /usr/share/initramfs-tools/hook-functions
+# Begin real processing below this line
+sed -i -e "s|/FIXME-initramfs-rootmnt||g" $DESTDIR/cryptroot/crypttab
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/conf.d/keymap.conf"],
+ File["/etc/initramfs-tools/hooks/fix-fixme"],
+ ],
refreshonly => true,
}
}