Files
Arquivotheca.Solaris-2.5/cmd/initpkg/init.d/audit
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

25 lines
388 B
Bash
Executable File

#! /bin/sh
#
#ident "@(#)audit 1.2 93/06/03 SMI"
#
# start/stop the audit deamon
case "$1" in
'start')
# Start the audit deamon
if [ -f /etc/security/audit_startup ] ; then
echo "starting audit daemon"
/etc/security/audit_startup
/usr/sbin/auditd &
fi
;;
'stop')
# Stop the audit deamon
if [ -f /etc/security/audit_startup ] ; then
/usr/sbin/audit -t
fi
;;
esac