18 lines
253 B
Bash
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
|