25 lines
399 B
Bash
25 lines
399 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# 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
|
|
|
|
case "$weekly_fbsdmon_enable" in
|
|
[Yy][Ee][Ss])
|
|
echo ""
|
|
echo "Sending statistic to fbsdmon.org"
|
|
|
|
%%PREFIX%%/sbin/fbsdmon -D -s
|
|
rc=$?;;
|
|
|
|
*) rc=0;;
|
|
esac
|
|
|
|
exit $rc
|