luksrku/initramfs/luksrku-hook

29 lines
430 B
Plaintext
Raw Permalink Normal View History

2016-09-22 20:40:58 +02:00
#!/bin/sh
#
# Initramfs-tools hook script for remote LUKS unlocking
#
# Copyright 2016-2019 Johannes Bauer <joe@johannes-bauer.com>
2016-09-22 20:40:58 +02:00
# Released under GPLv3
PREREQ=""
prereqs()
{
echo "$PREREQ"
}
case $1 in
prereqs)
prereqs
exit 0
;;
esac
. /usr/share/initramfs-tools/hook-functions
if [ ! -f /etc/luksrku-client.bin ]; then
exit 0
fi
cp /etc/luksrku-client.bin ${DESTDIR}/etc/
2016-09-22 20:40:58 +02:00
copy_exec /usr/local/sbin/luksrku /sbin