- update to version 2.2 (no longer requires any patches)

- make adding users more user-friendly in MESSAGE

From maintainer: Joshua Stein <jcs@rt.fm>
This commit is contained in:
camield 2000-11-20 07:38:02 +00:00
parent d5f38b3811
commit eb22302678
4 changed files with 10 additions and 39 deletions

View File

@ -1,10 +1,10 @@
# $OpenBSD: Makefile,v 1.2 2000/10/22 16:30:10 espie Exp $
# $OpenBSD: Makefile,v 1.3 2000/11/20 07:38:02 camield Exp $
DISTNAME= scanlogd-2.1
DISTNAME= scanlogd-2.2
HOMEPAGE= http://www.openwall.com/scanlogd/
CATEGORIES= security
NEED_VERSION= 1.313
NEED_VERSION= 1.340
MAINTAINER= Joshua Stein <jcs@rt.fm>
MASTER_SITES= ftp://ftp.openwall.com/scanlogd/ \

View File

@ -1,3 +1,3 @@
MD5 (scanlogd-2.1.tar.gz) = 63ffab643c61f932faabed8c6aa2b68e
RMD160 (scanlogd-2.1.tar.gz) = 221b2b87ca277de0a0332c16daf75d5af510ba67
SHA1 (scanlogd-2.1.tar.gz) = c33515a8e9e7dc781b0c66529008ad5713531c55
MD5 (scanlogd-2.2.tar.gz) = bb4586e116c579dbdd359da9c6560556
RMD160 (scanlogd-2.2.tar.gz) = 348fa425f67999bc957e8930a9004d70cb8563d1
SHA1 (scanlogd-2.2.tar.gz) = 8471d104d6c2c603c805e71361972e53f7224c2b

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-Makefile,v 1.1.1.1 2000/08/16 07:32:44 camield Exp $
libnids needs libnet to compile.
--- Makefile.orig Mon Aug 14 09:37:37 2000
+++ Makefile Mon Aug 14 09:37:52 2000
@@ -8,7 +8,7 @@
PCAP_L = -lpcap
NIDS_H = -I/usr/local/include
-NIDS_L = -L/usr/local/lib -lnids -lpcap
+NIDS_L = -L/usr/local/lib -lnids -lpcap -lnet
PROJ = scanlogd

View File

@ -1,22 +1,8 @@
scanlogd requires a seperate user and group named 'scanlogd' to run. You
will need to create these manually.
scanlogd requires a seperate user and group named 'scanlogd' to
run. You will need to create these manually. For example:
Add a group:
groupadd scanlogd
then find its gid:
grep scanlogd /etc/group | cut -f3 -d':'
Now list all the uids to find the highest in use:
cut -f3 -d':' /etc/passwd
add 1, and add the user with that uid and the gid added above:
chpass -l -a "scanlogd:*:$uid:$gid:::::/nonexistent:/sbin/nologin"
groupadd scanlogd
useradd -c SCANLOGD -d /nonexistent -g scanlogd -s /sbin/nologin scanlogd
The scanlogd program will automatically switch to this user upon startup.