Files
server/usr/share/initramfs-tools/scripts/local-bottom/cryptgnupg-sc
2026-01-07 20:52:11 +01:00

19 lines
253 B
Bash
Executable File

#!/bin/sh
PREREQ=""
prereqs() {
echo "$PREREQ"
}
case $1 in
prereqs)
prereqs
exit 0
;;
esac
if [ -x /usr/bin/gpgconf ] && [ -d "/cryptroot/gnupghome" ]; then
gpgconf --homedir="/cryptroot/gnupghome" --kill all
fi