Many system administrators don't know exactly what logs they have until they have looked into the question. Often, logging was enabled by defaults -- or by previous system administrators -- and so your systems may be keeping logs you never intended. logfinder is a tool created as a simple means of locating files that might be logs on an existing system. logfinder uses regular expressions to find local files with "log-like" contents; you can customize those expressions if necessary to meet your needs.
23 lines
551 B
Makefile
23 lines
551 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2005/02/12 00:32:58 jschauma Exp $
|
|
#
|
|
|
|
DISTNAME= logfinder-0.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.eff.org/osp/
|
|
|
|
MAINTAINER= jschauma@NetBSD.org
|
|
HOMEPAGE= http://www.eff.org/osp/
|
|
COMMENT= Eliminate Unwanted Logging of Personal Data
|
|
|
|
DEPENDS+= lsof>=4.72:../../sysutils/lsof
|
|
|
|
USE_BUILDLINK3= YES
|
|
NO_BUILD= YES
|
|
|
|
PYTHON_PATCH_SCRIPTS+= ${WRKSRC}/logfinder.py
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/logfinder.py ${PREFIX}/sbin/
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|