forked from Lainports/freebsd-ports
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]
16 lines
275 B
Bash
16 lines
275 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
case $2 in
|
|
POST-INSTALL)
|
|
if [ ! -f "%%DATABASEDIR%%/auditfile.tbz" ]; then
|
|
echo
|
|
echo "===> To check your installed ports for known vulnerabilities now do:"
|
|
echo
|
|
echo " %%PREFIX%%/bin/portaudit -F -a"
|
|
echo
|
|
fi
|
|
;;
|
|
esac
|