diff options
author | sergei <sergei@FreeBSD.org> | 2003-10-31 05:59:57 +0800 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2003-10-31 05:59:57 +0800 |
commit | 3e74b13158dc72c394b8749932ae717ee711827c (patch) | |
tree | d28e687229348778250fcae2d399ad67e474bd02 /sysutils/minirsyslogd | |
parent | a508bda80aea217aebac5b5d54eca233227934e6 (diff) | |
download | freebsd-ports-gnome-3e74b13158dc72c394b8749932ae717ee711827c.tar.gz freebsd-ports-gnome-3e74b13158dc72c394b8749932ae717ee711827c.tar.zst freebsd-ports-gnome-3e74b13158dc72c394b8749932ae717ee711827c.zip |
Add minirsyslogd 1.02: minimal, fast and secure syslog receiver.
minirsyslogd is a minimalistic, fast and secure (through lack of bloat)
remote-only syslog receiver suitable for hardened log receiver hosts
and/or central log receivers that receive several gigabyte of logs each day.
It will not deal with local syslog data. It does not have a multitude
of configuration, alerting or scripting options. It will however
automatically split inbound syslog data according to IP address,
date and current hour, and do so as rapidly and (I hope) securely as
possible.
Author: Mikael Olsson <mikael.olsson@clavister.com>
WWW: http://www.clueby4.org/minirsyslogd/
PR: 58737
Submitted by: lx@redundancy.redundancy.org
Diffstat (limited to 'sysutils/minirsyslogd')
-rw-r--r-- | sysutils/minirsyslogd/Makefile | 26 | ||||
-rw-r--r-- | sysutils/minirsyslogd/distinfo | 1 | ||||
-rw-r--r-- | sysutils/minirsyslogd/pkg-descr | 12 | ||||
-rw-r--r-- | sysutils/minirsyslogd/pkg-plist | 2 |
4 files changed, 41 insertions, 0 deletions
diff --git a/sysutils/minirsyslogd/Makefile b/sysutils/minirsyslogd/Makefile new file mode 100644 index 000000000000..62a0be02d419 --- /dev/null +++ b/sysutils/minirsyslogd/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: minirsyslogd +# Date created: 2003-10-30 +# Whom: lx@redundancy.redundancy.org +# +# $FreeBSD$ +# + +PORTNAME= minirsyslogd +PORTVERSION= 1.02 +CATEGORIES= sysutils net +MASTER_SITES= http://www.clueby4.org/minirsyslogd/ + +MAINTAINER= lx@redundancy.redundancy.org +COMMENT= Minimal, fast and secure syslog receiver + +MAN8= minirsyslogd.8 +MANCOMPRESSED= yes + +do-build: + cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8.gz ${MAN8PREFIX}/man/man8 + +.include <bsd.port.mk> diff --git a/sysutils/minirsyslogd/distinfo b/sysutils/minirsyslogd/distinfo new file mode 100644 index 000000000000..3b5d64f13be3 --- /dev/null +++ b/sysutils/minirsyslogd/distinfo @@ -0,0 +1 @@ +MD5 (minirsyslogd-1.02.tar.gz) = bd66dd308cd44aa079319200f3d3cd82 diff --git a/sysutils/minirsyslogd/pkg-descr b/sysutils/minirsyslogd/pkg-descr new file mode 100644 index 000000000000..40f82ae518e3 --- /dev/null +++ b/sysutils/minirsyslogd/pkg-descr @@ -0,0 +1,12 @@ +minirsyslogd is a minimalistic, fast and secure (through lack of bloat) +remote-only syslog receiver suitable for hardened log receiver hosts +and/or central log receivers that receive several gigabyte of logs each day. + +It will not deal with local syslog data. It does not have a multitude +of configuration, alerting or scripting options. It will however +automatically split inbound syslog data according to IP address, +date and current hour, and do so as rapidly and (I hope) securely as +possible. + +Author: Mikael Olsson <mikael.olsson@clavister.com> +WWW: http://www.clueby4.org/minirsyslogd/ diff --git a/sysutils/minirsyslogd/pkg-plist b/sysutils/minirsyslogd/pkg-plist new file mode 100644 index 000000000000..ff3d46bb651e --- /dev/null +++ b/sysutils/minirsyslogd/pkg-plist @@ -0,0 +1,2 @@ +@comment $FreeBSD$ +sbin/minirsyslogd |