1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/security/pwned-check/pkg-deinstall
Stefan Eßer da891bfb78 This script uses a downloaded copy of the pwned passwort hashes available
from https://haveibeenpwned.com/Passwords/ to allow passwords to be locally
checked, whether they are known to have been obtained in a data breach and
therefore should not be used.

Approved by:	Antoine (mentor)
2017-10-23 20:46:08 +00:00

16 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