freebsd-dev/etc/rc.d/accounting
Doug Barton e3c46a3332 Remove $NetBSD$ CVS tags. We no longer attempt to synch our rc.d files
with theirs, so this information doesn't need to be in the live file.
Having it in our CVS history is enough.
2007-12-08 07:20:23 +00:00

51 lines
885 B
Bash
Executable File

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: accounting
# REQUIRE: mountcritremote
# BEFORE: DAEMON
# KEYWORD: nojail
. /etc/rc.subr
name="accounting"
rcvar=`set_rcvar`
accounting_command="/usr/sbin/accton"
accounting_file="/var/account/acct"
start_cmd="accounting_start"
stop_cmd="accounting_stop"
accounting_start()
{
local _dir
_dir=`dirname "$accounting_file"`
if [ ! -d `dirname "$_dir"` ]; then
if ! mkdir -p "$_dir"; then
warn "Could not create $_dir."
return 1
fi
fi
if [ ! -e "$accounting_file" ]; then
touch "$accounting_file"
fi
if [ ! -f ${accounting_file} ]; then
echo "Creating accounting file ${accounting_file}"
( umask 022 ; > ${accounting_file} )
fi
echo "Turning on accounting."
${accounting_command} ${accounting_file}
}
accounting_stop()
{
echo "Turning off accounting."
${accounting_command}
}
load_rc_config $name
run_rc_command "$1"