Add auditd rc.d script.
Submitted by: trhodes Obtained from: TrustedBSD Project
This commit is contained in:
parent
e62911a34f
commit
e0e0ae286e
@ -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
34
etc/rc.d/auditd
Normal 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"
|
Loading…
Reference in New Issue
Block a user