wok rev 24289

updated sshguard (2.4.0 -> 2.4.2)
author Hans-G?nter Theisgen
date Fri Jan 14 13:25:50 2022 +0100 (2022-01-14)
parents 1df6fa555414
children a3e66646ebf7
files sshguard/description.txt sshguard/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/sshguard/description.txt	Fri Jan 14 13:25:50 2022 +0100
     1.3 @@ -0,0 +1,11 @@
     1.4 +Sshguard protects hosts from brute-force attacks against SSH and other services.
     1.5 +It aggregates system logs and blocks repeat offenders using one of several
     1.6 +firewall backends, including iptables, ipfw, and pf.
     1.7 +
     1.8 +Sshguard can read log messages from standard input (suitable for piping from syslog)
     1.9 +or monitor one or more log files.
    1.10 +Log messages are parsed, line-by-line, for recognised patterns.
    1.11 +If an attack, such as several login failures within a few seconds, is detected,
    1.12 +the offending IP is blocked.
    1.13 +Offenders are unblocked after a set interval, but can be semi-permanently banned
    1.14 +using the blacklist option.
     2.1 --- a/sshguard/receipt	Thu Jan 13 18:29:05 2022 +0000
     2.2 +++ b/sshguard/receipt	Fri Jan 14 13:25:50 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="sshguard"
     2.7 -VERSION="2.4.0"
     2.8 +VERSION="2.4.2"
     2.9  CATEGORY="security"
    2.10  TAGS="ssh"
    2.11  SHORT_DESC="Protects networked hosts from brute force attacks."
    2.12 @@ -24,14 +24,12 @@
    2.13  		--mandir=/usr/share/man	\
    2.14  		$CONFIGURE_ARGS &&
    2.15  	make &&
    2.16 -	make DESTDIR=$DESTDIR install
    2.17 +	make install DESTDIR=$DESTDIR
    2.18  }
    2.19  
    2.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.21  genpkg_rules()
    2.22  {
    2.23 -	mkdir -p $fs/usr
    2.24 -
    2.25 -	cp -a $install/usr/sbin		$fs/usr
    2.26 -	cp -a $install/usr/libexec	$fs/usr
    2.27 +	cook_copy_folders	sbin
    2.28 +	cook_copy_folders	libexec
    2.29  }