NetBSD/etc/rc.d/accounting

32 lines
467 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: accounting,v 1.3 2000/09/19 13:04:38 lukem Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: accounting
# REQUIRE: mountall
. /etc/rc.subr
name="accounting"
rcvar=$name
2000-03-10 14:53:23 +03:00
start_cmd="accounting_start"
stop_cmd="accounting_stop"
accounting_start()
{
if [ -f /var/account/acct ]; then
echo "Turning on accounting."
/usr/sbin/accton /var/account/acct
fi
}
accounting_stop()
{
echo "Turning off accounting."
/usr/sbin/accton
}
load_rc_config $name
2000-03-10 14:53:23 +03:00
run_rc_command "$1"