#!/bin/sh PREREQ="cryptroot" prereqs () { echo "$PREREQ" } case "$1" in prereqs) prereqs exit 0 ;; esac . /usr/share/initramfs-tools/hook-functions copy_exec /lib/cryptsetup/naskpass /lib/cryptsetup copy_exec /lib/cryptsetup/naskshell /bin copy_exec /lib/cryptsetup/naskpass_check /lib/cryptsetup copy_exec /usr/share/naskpass/naskpass.pre /lib/cryptsetup copy_exec /usr/share/naskpass/naskpass.post /lib/cryptsetup dash -n /usr/share/naskpass/naskpass.initconf copy_exec /usr/share/naskpass/naskpass.initconf /etc/naskpass.conf copy_exec /usr/sbin/sshd /sbin/sshd cp -R /etc/initramfs-tools/etc/ssh "${DESTDIR}/etc/" copy_exec /usr/lib/$(dpkg-architecture -q DEB_HOST_MULTIARCH)/libnss_compat.so /usr/lib/$(dpkg-architecture -q DEB_HOST_MULTIARCH)/ if [ -r "${DESTDIR}/etc/nsswitch.conf" ]; then echo "passwd: compat" > "${DESTDIR}/etc/nsswitch.conf" echo "group: compat" >>"${DESTDIR}/etc/nsswitch.conf" echo "shadow: compat" >>"${DESTDIR}/etc/nsswitch.conf" fi [ -r "${DESTDIR}/etc/passwd" ] || echo 'root:x:0:0:root:/root:/bin/naskshell' >"${DESTDIR}/etc/passwd" [ -r "${DESTDIR}/etc/group" ] || echo 'root:x:0:' >"${DESTDIR}/etc/group" [ -r "${DESTDIR}/etc/shadow" ] || echo 'root:*:15446:0:99999:7:::' >"${DESTDIR}/etc/shadow" mkdir -p ${DESTDIR}/lib/terminfo/l cp /lib/terminfo/l/linux ${DESTDIR}/lib/terminfo/l/ exit 0