aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--GIDs1
-rw-r--r--UIDs1
-rw-r--r--UPDATING11
-rw-r--r--security/scanlogd/Makefile3
-rw-r--r--security/scanlogd/pkg-message9
5 files changed, 16 insertions, 9 deletions
diff --git a/GIDs b/GIDs
index 64745d52adaa..5c990297d63d 100644
--- a/GIDs
+++ b/GIDs
@@ -219,6 +219,7 @@ netdisco:*:840:
munin:*:842:
dahdi:*:843:asterisk
fossy:*:901:www
+scanlogd:*:902:
bacula:*:910:
iserv:*:911:
_sj3:*:912:
diff --git a/UIDs b/UIDs
index c04b099af3fd..2d3935ef77aa 100644
--- a/UIDs
+++ b/UIDs
@@ -222,6 +222,7 @@ statsd:*:826:826::0:0:Statsd Daemon:/nonexistent:/sbin/nologin
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
diff --git a/UPDATING b/UPDATING
index 5f5bdde8796c..3b7004652d12 100644
--- a/UPDATING
+++ b/UPDATING
@@ -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
diff --git a/security/scanlogd/Makefile b/security/scanlogd/Makefile
index 98ba33058c5a..543dc6d00670 100644
--- a/security/scanlogd/Makefile
+++ b/security/scanlogd/Makefile
@@ -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
diff --git a/security/scanlogd/pkg-message b/security/scanlogd/pkg-message
deleted file mode 100644
index a3258794efcb..000000000000
--- a/security/scanlogd/pkg-message
+++ /dev/null
@@ -1,9 +0,0 @@
-----------------------------------------------------------------------------
-
-scanlogd requires a separate user and group named 'scanlogd' to run.
-You will need to create these manually. For example:
-
-pw groupadd scanlogd
-pw useradd scanlogd -d /nonexistent -g scanlogd -s /sbin/nologin -c SCANLOGD
-
-----------------------------------------------------------------------------