be652c1097
Samhain is an open source file integrity and host-based intrusion detection system for Linux and Unix. It can run as a daemon process, and and thus can remember file changes - contrary to a tool that runs from cron, if a file is modified you will get only one report, while subsequent checks of that file will ignore the modification as it is already reported (unless the file is modified again). Samhain can optionally be used as client/server system to provide centralized monitoring for multiple host. Logging to a (MySQL or PostgreSQL) database is supported. PR: 214623 Submitted by: Nikola Kolev <koue@chaosophia.net>
20 lines
523 B
Makefile
20 lines
523 B
Makefile
# Created by: Nikola Kolev <koue@chaosophia.net>
|
|
# $FreeBSD$
|
|
|
|
# This port recognizes the following non-boolean tunables:
|
|
#
|
|
# WITH_RUNAS_USER:
|
|
# Whe building with "WITH_SERVER" defined, the username of the
|
|
# account Yule will run as. Defaults to "yule". If using
|
|
# WITH_GNUPG, ensure that this user exists and has a pgp
|
|
# keypair before installing.
|
|
|
|
PKGNAMESUFFIX= -server
|
|
|
|
COMMENT= Log server for the Samhain IDS
|
|
|
|
WITH_SERVER= yes
|
|
|
|
MASTERDIR= ${.CURDIR}/../samhain
|
|
|
|
.include "${MASTERDIR}/Makefile"
|