Add startup script for verified exec.

This commit is contained in:
blymn 2004-01-14 06:53:50 +00:00
parent a42909419d
commit 67b5617823
1 changed files with 23 additions and 0 deletions

23
etc/rc.d/veriexec Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
#
# $NetBSD: veriexec,v 1.1 2004/01/14 06:53:50 blymn Exp $
#
# PROVIDE: veriexec
# REQUIRE: mountcritlocal
# BEFORE: securelevel
. /etc/rc.subr
name="veriexec"
start_cmd="veriexec_start"
veriexec_start()
{
echo -n "Loading fingerprints..."
/sbin/veriexecctl /etc/signatures
echo " done."
}
load_rc_config $name
run_rc_command "$1"