mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
da891bfb78
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)
16 lines
374 B
Bash
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
|