2012-12-01 15:11:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: auditdistd
|
|
|
|
# REQUIRE: auditd
|
|
|
|
# BEFORE: DAEMON
|
|
|
|
# KEYWORD: nojail shutdown
|
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="auditdistd"
|
2016-04-23 16:10:54 +00:00
|
|
|
desc="Audit trail files distribution daemon"
|
2012-12-01 15:11:46 +00:00
|
|
|
rcvar="${name}_enable"
|
|
|
|
pidfile="/var/run/${name}.pid"
|
|
|
|
command="/usr/sbin/${name}"
|
2012-12-13 09:41:32 +00:00
|
|
|
required_files="/etc/security/${name}.conf"
|
2012-12-01 15:11:46 +00:00
|
|
|
extra_commands="reload"
|
|
|
|
|
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|