e3f7b12896
-- AIDE (Advanced Intrusion Detection Environment) is a free replacement for Tripwire. It does the same things as the semi-free Tripwire and more. What does it do? It creates a database from the regular expression rules that it finds from the config file. Once this database is initialized it can be used to verify the integrity of the files. It has several message digest algorithms (md5,sha1,rmd160,tiger,haval,etc.) that are used to check the integrity of the file. More algorithms can be added with relative ease. All of the usual file attributes can also be checked for inconsistencies. It can read databases from older or newer versions. See the manual pages within the distribution for further info. There is also a beginning of a manual. WWW: http://www.cs.tut.fi/~rammer/aide.html
30 lines
860 B
Plaintext
30 lines
860 B
Plaintext
$OpenBSD: patch-configure,v 1.1.1.1 2001/06/07 14:26:22 lebel Exp $
|
|
--- configure.orig Tue Apr 25 10:02:59 2000
|
|
+++ configure Wed Jun 6 11:13:57 2001
|
|
@@ -53,7 +53,7 @@ libexecdir='${exec_prefix}/libexec'
|
|
datadir='${prefix}/share'
|
|
sysconfdir='${prefix}/etc'
|
|
sharedstatedir='${prefix}/com'
|
|
-localstatedir='${prefix}/var'
|
|
+localstatedir='/var'
|
|
libdir='${exec_prefix}/lib'
|
|
includedir='${prefix}/include'
|
|
oldincludedir='/usr/include'
|
|
@@ -2360,13 +2360,13 @@ EOF
|
|
fi
|
|
|
|
|
|
-if test "x$sysconfdir" != xNONE; then
|
|
+if test "x$localstatedir" != xNONE; then
|
|
cat >> confdefs.h <<EOF
|
|
-#define DEFAULT_DB "$sysconfdir/aide.db"
|
|
+#define DEFAULT_DB "$localstatedir/db/aide.db"
|
|
EOF
|
|
|
|
cat >> confdefs.h <<EOF
|
|
-#define DEFAULT_DB_OUT "$sysconfdir/aide.db.new"
|
|
+#define DEFAULT_DB_OUT "$localstatedir/db/aide.db.new"
|
|
EOF
|
|
|
|
elif test "x$prefix" != xNONE; then
|