config root man

Current Path : /etc/periodic/monthly/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //etc/periodic/monthly/200.accounting

#!/bin/sh -
#
# $FreeBSD: release/9.1.0/etc/periodic/monthly/200.accounting 202218 2010-01-13 19:07:48Z ed $
#

# 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

oldmask=$(umask)
umask 066
case "$monthly_accounting_enable" in
    [Yy][Ee][Ss])
	W=/var/log/utx.log
	rc=0
	remove=NO
	if [ ! -f $W.0 ]
	then
	    if [ -f $W.0.gz ]
	    then
		remove=YES
		zcat $W.0.gz > $W.0 || rc=1
	    elif [ -f $W.0.bz2 ]
	    then
		remove=YES
		bzcat $W.0.bz2 > $W.0 || rc=1
	    else
		echo '$monthly_accounting_enable is set but' \
		    "$W.0 doesn't exist"
		rc=2
	    fi
	fi
	if [ $rc -eq 0 ]
	then
	    echo ""
	    echo "Doing login accounting:"

	    rc=$(ac -p -w $W.0 | sort -nr -k 2 | tee /dev/stderr | wc -l)
	    [ $rc -gt 0 ] && rc=1
	fi
	[ $remove = YES ] && rm -f $W.0;;

    *)  rc=0;;
esac

umask $oldmask
exit $rc

Man Man