1
0
Fork 0
cryptsetup/debian/initramfs/scripts/local-bottom/cryptgnupg-sc
Daniel Baumann 74b680e410
Adding debian version 2:2.7.5-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 10:45:48 +02:00

18 lines
253 B
Bash

#!/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