in pkgsrc-wip. radmind is a suite of Unix command-line tools and a server designed to remotely administer the file systems of multiple Unix machines. At its core, radmind operates as a tripwire. It is able to detect changes to any managed filesystem object, e.g. files, directories, links, etc. However, radmind goes further than just integrity checking: once a change is detected, radmind can optionally reverse the change.
15 lines
242 B
Bash
15 lines
242 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: radmind.sh,v 1.1.1.1 2004/12/28 14:04:39 wiz Exp $
|
|
|
|
# PROVIDE: radmind
|
|
# REQUIRE: DAEMON
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="radmind"
|
|
rcvar=$name
|
|
command="@PREFIX@/sbin/${name}"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|