b1d97de0ca
- Makefile adopt the port; pet portlint; remove comment about 'applying patches' on the post-patch stage; unmute post-patch. - files/* patch src/share/mh/revoke_keys, to use gpg2; move patch-gpg2 (410 lines), and split it to have separated patches; regen all patches using makepatch. Approved by: rene (mentor) Differential Revision: https://reviews.freebsd.org/D18871
19 lines
456 B
Bash
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
|