From owner-svn-ports-head@FreeBSD.ORG Wed Jul 23 15:25:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A7C05F8; Wed, 23 Jul 2014 15:25:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B71F2951; Wed, 23 Jul 2014 15:25:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6NFPo03017161; Wed, 23 Jul 2014 15:25:50 GMT (envelope-from novel@svn.freebsd.org) Received: (from novel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6NFPnJ6017157; Wed, 23 Jul 2014 15:25:49 GMT (envelope-from novel@svn.freebsd.org) Message-Id: <201407231525.s6NFPnJ6017157@svn.freebsd.org> From: Roman Bogorodskiy Date: Wed, 23 Jul 2014 15:25:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362703 - in head: . security/scanlogd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Jul 2014 15:25:50 -0000 Author: novel Date: Wed Jul 23 15:25:49 2014 New Revision: 362703 URL: http://svnweb.freebsd.org/changeset/ports/362703 QAT: https://qat.redports.org/buildarchive/r362703/ Log: - Use USER and GROUP in Makefile instead of having pkg-message suggesting a user to create user and group manually - Add uid/gid to the UID and GID files respectively - Add an UPDATING entry to suggest users of scanlogd to drop existing users to avoid conflicts - Bump PORTREVISION PR: 191948 Submitted by: TEUBEL György Deleted: head/security/scanlogd/pkg-message Modified: head/GIDs head/UIDs head/UPDATING head/security/scanlogd/Makefile Modified: head/GIDs ============================================================================== --- head/GIDs Wed Jul 23 14:41:30 2014 (r362702) +++ head/GIDs Wed Jul 23 15:25:49 2014 (r362703) @@ -219,6 +219,7 @@ netdisco:*:840: munin:*:842: dahdi:*:843:asterisk fossy:*:901:www +scanlogd:*:902: bacula:*:910: iserv:*:911: _sj3:*:912: Modified: head/UIDs ============================================================================== --- head/UIDs Wed Jul 23 14:41:30 2014 (r362702) +++ head/UIDs Wed Jul 23 15:25:49 2014 (r362703) @@ -222,6 +222,7 @@ statsd:*:826:826::0:0:Statsd Daemon:/non netdisco:*:840:840::0:0:netdisco daemon:/nonexistent:/usr/sbin/nologin munin:*:842:842::0:0:Munin:/var/munin:/usr/sbin/nologin fossy:*:901:901::0:0:FOSSology user:/usr/local/share/fossology:/usr/local/bin/bash +scanlogd:*:902:902::0:0:scanlogd user:/nonexistent:/usr/sbin/nologin bacula:*:910:910::0:0:Bacula Daemon:/var/db/bacula:/usr/sbin/nologin iserv:*:911:911::0:0:Iserv Daemon:/nonexistent:/usr/sbin/nologin _sj3:*:912:912::0:0:SJ3 Daemon:/nonexistent:/usr/sbin/nologin Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Jul 23 14:41:30 2014 (r362702) +++ head/UPDATING Wed Jul 23 15:25:49 2014 (r362703) @@ -5,6 +5,17 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20140723: + AFFECTS: users of security/scanlogd + AUTHOR: tgyurci@gmail.com + + The security/scanlogd port now creates scanlogd user and group. Previous + scanlogd user and group must be removed before updating to not conflict + with the one created by the port: + + pw userdel scanlogd + pw groupdel scanlogd + 20140727: AFFECTS: users of TeX AUTHOR: bapt@FreeBSD.org Modified: head/security/scanlogd/Makefile ============================================================================== --- head/security/scanlogd/Makefile Wed Jul 23 14:41:30 2014 (r362702) +++ head/security/scanlogd/Makefile Wed Jul 23 15:25:49 2014 (r362703) @@ -3,6 +3,7 @@ PORTNAME= scanlogd PORTVERSION= 2.2.7 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://openwall.com/scanlogd/ \ ftp://ftp.openwall.com/pub/projects/scanlogd/ \ @@ -20,6 +21,8 @@ ALL_TARGET= libnids ALL_TARGET= libpcap .endif +USERS= scanlogd +GROUPS= scanlogd MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -c" LD="${CC}" PLIST_FILES= bin/scanlogd man/man8/scanlogd.8.gz