#!/sbin/sh
#
# Copyright (c) 1999 by Sun Microsystems, Inc.
# All rights reserved.
#
#ident	"@(#)acctadm	1.1	00/02/14 SMI"
#
# Restore the extended accounting configuration that was in effect before
# reboot.
#

case "$1" in
start)
	[ -x /usr/sbin/acctadm -a -f /etc/acctadm.conf ] || exit 0
	/usr/sbin/acctadm -u
	;;

stop)
	;;

*)
	echo "Usage: $0 { start | stop }"
	exit 1
	;;
esac
exit 0
