Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Jul 2014 15:25:49 +0000 (UTC)
From:      Roman Bogorodskiy <novel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r362703 - in head: . security/scanlogd
Message-ID:  <201407231525.s6NFPnJ6017157@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407231525.s6NFPnJ6017157>