opnsense-ports/security/monkeysphere/pkg-deinstall
Franco Fichtner 2572eaf0ed */*: sync with upstream
Taken from: HardenedBSD
2019-02-26 08:20:20 +01:00

19 lines
456 B
Bash

#!/bin/sh
#
# A package removal script for monkeysphere (borrowed from
# monkeysphere's debian/monkeysphere.postrm)
#
# Original Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
# Copyright 2008,2009
# monkeysphere's home dir (via UIDs)
MSHD="/var/monkeysphere"
case $2 in
POST-DEINSTALL)
USER=monkeysphere
if [ -d "$MSHD" ] ; then
echo "Warning: You may want to remove ${USER}'s cached authentication data and keyrings in $MSHD"
fi
;;
esac