svn commit: r392923 - in head/security: . sshguard sshguard-ipfilter sshguard-ipfw sshguard-null sshguard-pf

Mark Felder feld at FreeBSD.org
Sun Jul 26 15:04:37 UTC 2015


Author: feld
Date: Sun Jul 26 15:04:34 2015
New Revision: 392923
URL: https://svnweb.freebsd.org/changeset/ports/392923

Log:
  security/sshguard-null
  
  portable do-nothing backend for applying detection but not prevention
  
  PR:		201323

Added:
  head/security/sshguard-null/
  head/security/sshguard-null/Makefile   (contents, props changed)
Modified:
  head/security/Makefile
  head/security/sshguard-ipfilter/Makefile
  head/security/sshguard-ipfw/Makefile
  head/security/sshguard-pf/Makefile
  head/security/sshguard/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sun Jul 26 13:35:29 2015	(r392922)
+++ head/security/Makefile	Sun Jul 26 15:04:34 2015	(r392923)
@@ -1000,6 +1000,7 @@
     SUBDIR += sshguard
     SUBDIR += sshguard-ipfilter
     SUBDIR += sshguard-ipfw
+    SUBDIR += sshguard-null
     SUBDIR += sshguard-pf
     SUBDIR += sshit
     SUBDIR += sshpass

Modified: head/security/sshguard-ipfilter/Makefile
==============================================================================
--- head/security/sshguard-ipfilter/Makefile	Sun Jul 26 13:35:29 2015	(r392922)
+++ head/security/sshguard-ipfilter/Makefile	Sun Jul 26 15:04:34 2015	(r392923)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PKGNAMESUFFIX=	-ipfilter
-CONFLICTS=	sshguard-1.* sshguard-ipfw-1.* sshguard-pf-1.*
+CONFLICTS=	sshguard-1.* sshguard-ipfw-1.* sshguard-pf-1.* sshguard-null-1.*
 
 COMMENT=	Protect hosts from brute force attacks against ssh and other services using ipfilter
 

Modified: head/security/sshguard-ipfw/Makefile
==============================================================================
--- head/security/sshguard-ipfw/Makefile	Sun Jul 26 13:35:29 2015	(r392922)
+++ head/security/sshguard-ipfw/Makefile	Sun Jul 26 15:04:34 2015	(r392923)
@@ -5,7 +5,7 @@ PKGNAMESUFFIX=	-ipfw
 
 COMMENT=	Protect hosts from brute force attacks against ssh and other services using ipfw
 
-CONFLICTS=	sshguard-1.* sshguard-ipfilter-1.* sshguard-pf-1.*
+CONFLICTS=	sshguard-1.* sshguard-ipfilter-1.* sshguard-pf-1.* sshguard-null-1.*
 
 SSHGUARDFW=	ipfw
 MASTERDIR=	${.CURDIR}/../sshguard

Added: head/security/sshguard-null/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/sshguard-null/Makefile	Sun Jul 26 15:04:34 2015	(r392923)
@@ -0,0 +1,13 @@
+# Created by: Mij <mij at bitchx.it>
+# $FreeBSD$
+
+PKGNAMESUFFIX=	-null
+
+COMMENT=	Protect hosts from brute force attacks against ssh and other services
+
+CONFLICTS=	sshguard-1.* sshguard-ipfilter-1.* sshguard-ipfw-1.* sshguard-pf-1.*
+
+SSHGUARDFW=	null
+MASTERDIR=	${.CURDIR}/../sshguard
+
+.include "${MASTERDIR}/Makefile"

Modified: head/security/sshguard-pf/Makefile
==============================================================================
--- head/security/sshguard-pf/Makefile	Sun Jul 26 13:35:29 2015	(r392922)
+++ head/security/sshguard-pf/Makefile	Sun Jul 26 15:04:34 2015	(r392923)
@@ -5,7 +5,7 @@ PKGNAMESUFFIX=	-pf
 
 COMMENT=	Protect hosts from brute force attacks against ssh and other services using pf
 
-CONFLICTS=	sshguard-1.* sshguard-ipfilter-1.* sshguard-ipfw-1.*
+CONFLICTS=	sshguard-1.* sshguard-ipfilter-1.* sshguard-ipfw-1.* sshguard-null-1.*
 
 SSHGUARDFW=	pf
 MASTERDIR=	${.CURDIR}/../sshguard

Modified: head/security/sshguard/Makefile
==============================================================================
--- head/security/sshguard/Makefile	Sun Jul 26 13:35:29 2015	(r392922)
+++ head/security/sshguard/Makefile	Sun Jul 26 15:04:34 2015	(r392923)
@@ -12,7 +12,7 @@ COMMENT?=	Protect hosts from brute force
 
 LICENSE=	BSD2CLAUSE
 
-CONFLICTS?=	sshguard-ipfilter-1.* sshguard-ipfw-1.* sshguard-pf-1.*
+CONFLICTS?=	sshguard-ipfilter-1.* sshguard-ipfw-1.* sshguard-pf-1.* sshguard-null-1.*
 
 USES=		autoreconf tar:xz
 


More information about the svn-ports-all mailing list