freebsd-ports/www/privatebin/pkg-deinstall
Stefan Eßer ba7747bf2d New port of a simple paste-bin server. Files are AES encrypted on the
originating web-browser using Javascript.

Approved by:	antoine (mentor)
2017-11-03 16:27:30 +00:00

15 lines
374 B
Bash

#!/bin/sh
PORTNAME=${1%-*}
[ "$2" = DEINSTALL ] && cat <<***EOM
------------------------------------------------------------------------------
If you are no longer using the $PORTNAME port, then manually delete
the following directory and all its contents:
/var/db/$PORTNAME
------------------------------------------------------------------------------
***EOM
exit 0