NetBSD/etc/rc.d/accounting

37 lines
682 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: accounting,v 1.8 2004/08/13 18:08:03 mycroft Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: accounting
# REQUIRE: mountall
# BEFORE: DAEMON
2000-03-10 14:53:23 +03:00
$_rc_subr_loaded . /etc/rc.subr
2000-03-10 14:53:23 +03:00
name="accounting"
rcvar=$name
accounting_command="/usr/sbin/accton"
accounting_file="/var/account/acct"
2000-03-10 14:53:23 +03:00
start_cmd="accounting_start"
stop_cmd="accounting_stop"
accounting_start()
{
if [ ! -f ${accounting_file} ]; then
echo "Creating accounting file ${accounting_file}"
( umask 022 ; > ${accounting_file} )
2000-03-10 14:53:23 +03:00
fi
echo "Turning on accounting."
${accounting_command} ${accounting_file}
2000-03-10 14:53:23 +03:00
}
accounting_stop()
{
echo "Turning off accounting."
${accounting_command}
2000-03-10 14:53:23 +03:00
}
load_rc_config $name
2000-03-10 14:53:23 +03:00
run_rc_command "$1"