summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/auditd
blob: 6c4f41cedc6a5cce2ae37dcfb096900ac03c7e67 (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
#!/bin/sh
#
# $FreeBSD$
#
# Start up for the Audit daemon.
#

# PROVIDE: auditd
# REQUIRE: syslogd
# BEFORE:  DAEMON

. /etc/rc.subr

name="auditd"
stop_cmd="auditd_stop"
command="/usr/sbin/${name}"
rcvar="auditd_enable"
command_args="${auditd_flags}"
required_files="/etc/security/audit_class /etc/security/audit_control
		/etc/security/audit_event /etc/security/audit_user
		/etc/security/audit_warn"

auditd_stop()
{

	if [ -f /var/run/auditd.pid ]; then
		/usr/sbin/audit -t
	else
		echo "The audit daemon is not running";
	fi
}

load_rc_config $name
run_rc_command "$1"
OpenPOWER on IntegriCloud