diff options
author | sborrill <sborrill@pkgsrc.org> | 2018-01-18 16:42:40 +0000 |
---|---|---|
committer | sborrill <sborrill@pkgsrc.org> | 2018-01-18 16:42:40 +0000 |
commit | 863bdbbb93c4450d0f5ddb6e893e3f342f2e6730 (patch) | |
tree | b94635dd0b87511b52a1d6b11a4247b51f15500c /security/lynis | |
parent | 8090f591ffe0a4931a1ca18a2283a7ec00b654e0 (diff) | |
download | pkgsrc-863bdbbb93c4450d0f5ddb6e893e3f342f2e6730.tar.gz |
lynis: update to 2.6.0
Changes:
--------
* Binary paths are now sorted
* Greek language added
* systemd detection improved
* VirtualBox detection extended
* Several code enhancements
Tests:
------
* [PHP-2379] - Small enhancement to resolve error on screen in some cases
* [MALW-3280] - Improved detection for BitDefender tooling
Diffstat (limited to 'security/lynis')
-rw-r--r-- | security/lynis/Makefile | 4 | ||||
-rw-r--r-- | security/lynis/PLIST | 3 | ||||
-rw-r--r-- | security/lynis/distinfo | 12 | ||||
-rw-r--r-- | security/lynis/patches/patch-include_functions | 20 |
4 files changed, 11 insertions, 28 deletions
diff --git a/security/lynis/Makefile b/security/lynis/Makefile index dca78734841..a4169971bd8 100644 --- a/security/lynis/Makefile +++ b/security/lynis/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2018/01/18 16:26:05 sborrill Exp $ +# $NetBSD: Makefile,v 1.3 2018/01/18 16:42:40 sborrill Exp $ # -DISTNAME= lynis-2.5.9 +DISTNAME= lynis-2.6.0 CATEGORIES= security MASTER_SITES= https://cisofy.com/files/ diff --git a/security/lynis/PLIST b/security/lynis/PLIST index be55c7414fa..4b5abba6a34 100644 --- a/security/lynis/PLIST +++ b/security/lynis/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2018/01/15 12:38:37 sborrill Exp $ +@comment $NetBSD: PLIST,v 1.2 2018/01/18 16:42:40 sborrill Exp $ bin/lynis lib/lynis/db/fileperms.db lib/lynis/db/hints.db @@ -12,6 +12,7 @@ lib/lynis/db/languages/en-US lib/lynis/db/languages/es lib/lynis/db/languages/fi lib/lynis/db/languages/fr +lib/lynis/db/languages/gr lib/lynis/db/languages/he lib/lynis/db/languages/hu lib/lynis/db/languages/it diff --git a/security/lynis/distinfo b/security/lynis/distinfo index 47344e4a811..c1898781e6e 100644 --- a/security/lynis/distinfo +++ b/security/lynis/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.2 2018/01/18 13:22:18 sborrill Exp $ +$NetBSD: distinfo,v 1.3 2018/01/18 16:42:40 sborrill Exp $ -SHA1 (lynis-2.5.9.tar.gz) = 71733fa3de9894ca140333070de2843018b02d80 -RMD160 (lynis-2.5.9.tar.gz) = 1915a0f6cd7ad598c73d575259f801845dff3a1c -SHA512 (lynis-2.5.9.tar.gz) = 655942b6546183396a416df6b7a365918aab1a19b55e2b1d34da4a5fe7fe865aee59aae6de2467b8e5393cae9bb80f97c48a85f1e3606951d88ea21cb624c45a -Size (lynis-2.5.9.tar.gz) = 269067 bytes -SHA1 (patch-include_functions) = ceea3edbbf47bc8d41cffebaaefd9152592f66d7 +SHA1 (lynis-2.6.0.tar.gz) = 73099471eee2742477ca27ea7e9664da74a56ae2 +RMD160 (lynis-2.6.0.tar.gz) = 2049214b21b045275c5384f64b4f4bb23e6d87a7 +SHA512 (lynis-2.6.0.tar.gz) = eb0aa18b0b8b453ee61b0f5ff82f0f0bbffd9fe1b38232d04b2384dbbced4cdb2ea00e3b089d9c3765e1ea405c6fe5f03332bc7b4ea0189639226907e37f1b25 +Size (lynis-2.6.0.tar.gz) = 268446 bytes +SHA1 (patch-include_functions) = 157c720799d27adc8e90266f78de8da2db4b58cb SHA1 (patch-lynis) = f35b682d9c30afdd6bc4e35ca684a4bd7209f63d diff --git a/security/lynis/patches/patch-include_functions b/security/lynis/patches/patch-include_functions index 747035261b5..7c92035b6d6 100644 --- a/security/lynis/patches/patch-include_functions +++ b/security/lynis/patches/patch-include_functions @@ -1,7 +1,6 @@ -$NetBSD: patch-include_functions,v 1.2 2018/01/18 13:22:19 sborrill Exp $ +$NetBSD: patch-include_functions,v 1.3 2018/01/18 16:42:40 sborrill Exp $ Set location of default profiles. -Remove bash comparisons. --- include/functions.orig 2018-01-12 00:00:00.000000000 +0000 +++ include/functions 2018-01-15 11:38:48.000000000 +0000 @@ -14,20 +13,3 @@ Remove bash comparisons. for PNAME in ${tPROFILE_NAMES}; do for PLOC in ${tPROFILE_TARGETS}; do # Only use one default.prf -@@ -3010,14 +3010,14 @@ - - LogText "${FUNCNAME}: check if ${1} is equal to ${2}" - -- if [ "$1" == "$2" ]; then -+ if [ "$1" = "$2" ]; then - LogText "${FUNCNAME}: ${1} is equal to ${2}" - RETVAL=0 - fi - - if ! [ -z ${3+x} ]; then - LogText "${FUNCNAME}: ${1} is equal to ${3}" -- if [ "$2" == "$3" ]; then -+ if [ "$2" = "$3" ]; then - LogText "${FUNCNAME}: ${OPTION} is equal to ${3}" - RETVAL=1 - fi |