From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 2 23:30:12 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7989916A41F for ; Fri, 2 Sep 2005 23:30:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA19143D48 for ; Fri, 2 Sep 2005 23:30:11 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j82NUBRd098171 for ; Fri, 2 Sep 2005 23:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j82NUBot098169; Fri, 2 Sep 2005 23:30:11 GMT (envelope-from gnats) Resent-Date: Fri, 2 Sep 2005 23:30:11 GMT Resent-Message-Id: <200509022330.j82NUBot098169@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Thiel Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75AEC16A41F for ; Fri, 2 Sep 2005 23:24:41 +0000 (GMT) (envelope-from lx@redundancy.redundancy.org) Received: from redundancy.redundancy.org (redundancy.redundancy.org [198.144.201.242]) by mx1.FreeBSD.org (Postfix) with SMTP id 2D3DE43D45 for ; Fri, 2 Sep 2005 23:24:41 +0000 (GMT) (envelope-from lx@redundancy.redundancy.org) Received: (qmail 12282 invoked by uid 1000); 2 Sep 2005 23:25:02 -0000 Message-Id: <20050902232502.12281.qmail@redundancy.redundancy.org> Date: 2 Sep 2005 23:25:02 -0000 From: David Thiel To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: brian@hostintegrity.com Subject: ports/85673: Maintainer Update: security/osiris 4.1.8 -> 4.1.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: David Thiel List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 23:30:12 -0000 >Number: 85673 >Category: ports >Synopsis: Maintainer Update: security/osiris 4.1.8 -> 4.1.9 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 02 23:30:11 GMT 2005 >Closed-Date: >Last-Modified: >Originator: David Thiel >Release: FreeBSD 5.4-STABLE i386 >Organization: >Environment: System: FreeBSD redundancy.redundancy.org 5.4-STABLE FreeBSD 5.4-STABLE #9: Mon Jul 11 20:22:35 PDT 2005 lx@redundancy.redundancy.org:/usr/obj/usr/src/sys/REDUNDANCY i386 >Description: Updating the Osiris integrity checking system to 4.1.9. Code changes: : fixed install.sh to get proper ROOT_GROUP for Linux. : added runlevel 2 to linux init script setup. : added informative error messages in cli for init command. : fixed filter bug where notifications sent on zero changes. : fixed notify bug where SMTP buffer not large enough for some mailers. : fixed missing test-filter alias (test-regex). : fixed bug with root path not being assumed from command line arguments. : fixed installer for linux distro detection command. : fixed bug with info/error/warn message headers not being filtered : mod_ports for linux now supports monitoring/reporting on inode and uid. Port changes: Added PRINTDB tunable to optionally build and install the offline database print utility. Switched to new master site. >How-To-Repeat: >Fix: diff -ruN osiris.old/Makefile osiris/Makefile --- osiris.old/Makefile Fri Sep 2 15:36:48 2005 +++ osiris/Makefile Fri Sep 2 16:14:53 2005 @@ -6,9 +6,9 @@ # PORTNAME= osiris -PORTVERSION= 4.1.8 +PORTVERSION= 4.1.9 CATEGORIES= security -MASTER_SITES= http://osiris.shmoo.com/data/ \ +MASTER_SITES= http://www.hostintegrity.com/osiris/data/ \ http://darkambient.net/ MAINTAINER= lx@redundancy.redundancy.org @@ -16,6 +16,7 @@ OPTIONS= OSIRISMD "Enable to build the management daemon" off \ OSIRISD "Enable to build the osirisd scan agent" on \ + PRINTDB "Build database print tool" off \ CLI "Enable to build the management CLI" off CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} @@ -43,12 +44,25 @@ .else PLIST_SUB+= CLI="@comment " .endif +.if defined(WITH_PRINTDB) +PLIST_SUB+= PRINTDB="" +.else +PLIST_SUB+= PRINTDB="@comment " +.endif + +post-build: +.if defined(WITH_PRINTDB) + cd ${WRKSRC}/src/tools && ${MAKE} +.endif do-install: ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL @${MKDIR} ${PREFIX}/osiris .if defined(WITH_CLI) ${INSTALL_PROGRAM} ${WRKSRC}/src/cli/osiris ${PREFIX}/sbin +.endif +.if defined(WITH_PRINTDB) + ${INSTALL_PROGRAM} ${WRKSRC}/src/tools/printdb ${PREFIX}/bin .endif .if !defined(WITHOUT_OSIRISD) ${SED} -e 's|@INSTALLDIR@|${PREFIX}/sbin|g' \ diff -ruN osiris.old/distinfo osiris/distinfo --- osiris.old/distinfo Fri Sep 2 15:36:48 2005 +++ osiris/distinfo Fri Sep 2 15:37:47 2005 @@ -1,2 +1,2 @@ -MD5 (osiris-4.1.8.tar.gz) = 27a362ba5ad3025d5bca6d9c92196875 -SIZE (osiris-4.1.8.tar.gz) = 1891980 +MD5 (osiris-4.1.9.tar.gz) = a8e3720b05a8dc5d257a7effb6d68224 +SIZE (osiris-4.1.9.tar.gz) = 1916735 diff -ruN osiris.old/pkg-plist osiris/pkg-plist --- osiris.old/pkg-plist Fri Sep 2 15:36:48 2005 +++ osiris/pkg-plist Fri Sep 2 15:57:18 2005 @@ -1,5 +1,6 @@ @comment $FreeBSD: ports/security/osiris/pkg-plist,v 1.7 2005/03/12 08:26:59 sem Exp $ %%CLI%%sbin/osiris +%%PRINTDB%%bin/printdb %%OSIRISD%%sbin/osirisd %%OSIRISMD%%sbin/osirismd %%OSIRISD%%etc/rc.d/osirisd.sh >Release-Note: >Audit-Trail: >Unformatted: