opnsense-ports/security/monkeysphere/pkg-deinstall
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

26 lines
734 B
Bash

#!/bin/sh
# a package removal script for monkeysphere (borrowing from
# monkeysphere's debian/monkeysphere.postrm)
# Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
# Copyright 2008,2009
# FIXME: is /var/monkeysphere the right place for this stuff on
# FreeBSD?
VARLIB="/var/monkeysphere"
case $2 in
POST-DEINSTALL)
USER=monkeysphere
# FIXME: This doesn't do anything! Under what circumstances do we
# want to actually automatically purge all of /var/monkeysphere?
# (note: FreeBSD does not seem to want the package-specific user to be
# purged at package removal)
if [ -d "$VARLIB" ] ; then
echo "Warning: You may want to remove monkeysphere's cached authentication data and keyrings in $VARLIB"
fi
;;
esac