freebsd-ports/security/f-prot/files/900.fpupdate.in
Tim Bishop 5d679a1233 - Update f-prot to 6.2.1. Based on ports/132074.
PR:		ports/132074
Submitted by:	Cristiano Rolim Pereira <cristianorolim@hotmail.com>
2009-11-20 15:21:02 +00:00

30 lines
478 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# f-prot update script
# If there is a global system configuration file, suck it in.
if [ -r /etc/defaults/periodic.conf ]; then
. /etc/defaults/periodic.conf
source_periodic_confs
fi
: ${fpupdate_enable="YES"}
case "$fpupdate_enable" in
[Yy][Ee][Ss])
echo -n "Updating f-prot definitions: "
%%PREFIX%%/bin/fpupdate >/dev/null
if [ $? = 0 ]; then
echo "done."
rc=0
else
echo "failed."
rc=3
fi
;;
*) rc=0;;
esac
exit $rc