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