#!/bin/sh # # $FreeBSD: head/ports-mgmt/fbsdmon/files/600.fbsdmon.in 340872 2014-01-24 00:14:07Z mat $ # # 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