Add auditd rc.d script.

Submitted by:	trhodes
Obtained from:	TrustedBSD Project
This commit is contained in:
Robert Watson 2006-02-02 10:02:55 +00:00
parent e62911a34f
commit e0e0ae286e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=155209
2 changed files with 35 additions and 1 deletions

View File

@ -3,7 +3,7 @@
FILES= DAEMON LOGIN NETWORKING SERVERS \
abi accounting addswap adjkerntz amd \
apm apmd archdep atm1 atm2 atm3 \
apm apmd archdep atm1 atm2 atm3 auditd \
bgfsck bluetooth bootparams bsnmpd \
ccd cleanvar cleartmp cron \
devd devfs dhclient \

34
etc/rc.d/auditd Normal file
View File

@ -0,0 +1,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"