mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
1832c23a94
Since we are using the official VuXML database the auditing should be pretty complete. - mention web page - add more mirrors, disabling .ru mirror (too much lag) - allow combined options in portaudit shell script - add sample configuration file - use absolute paths for binaries, to ease use in crontab scripts [1] - correct type in man page [2] PR: 64005 [2] Submitted by: Tomasz Pilat <poncki@axelspringer.com.pl> [1] Nathan Dove <njdove@wafer.sandia.gov> [2]
18 lines
302 B
Bash
18 lines
302 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
case $2 in
|
|
POST-DEINSTALL)
|
|
echo
|
|
echo "The portaudit package has been deleted."
|
|
echo "If you're *not* upgrading and won't be using"
|
|
echo "it any longer, you may want to remove the"
|
|
echo "portaudit database:"
|
|
echo
|
|
echo " rm -Rf %%DATABASEDIR%%"
|
|
echo
|
|
;;
|
|
esac
|