summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/accounting
blob: a24cc07e0a61f170e442fdd6b8b3d87633ddd6a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/sh
#
# $NetBSD: accounting,v 1.7 2002/03/22 04:33:57 thorpej Exp $
# $FreeBSD$
#

# PROVIDE: accounting
# REQUIRE: mountall
# BEFORE: DAEMON
# KEYWORD: FreeBSD NetBSD

. /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()
{
	case ${OSTYPE} in
	FreeBSD)
		_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
		;;
	*)
		;;
	esac

	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"
OpenPOWER on IntegriCloud