summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKr1ss2021-02-14 02:41:47 +0100
committerKr1ss2021-02-14 02:41:47 +0100
commitf1298c13c6a86aae70e1713c5a5f4f7875484dae (patch)
tree8cd994bb7290525343a9de940ae588c5ede56430
parent5f2c1b7740140bd20d3dd546e5b0f8f1463e94db (diff)
downloadaur-f1298c13c6a86aae70e1713c5a5f4f7875484dae.tar.gz
update: lynis3 3.0.3-1
upstream release
-rw-r--r--.SRCINFO10
-rw-r--r--CHANGELOG.md15
-rw-r--r--PKGBUILD9
3 files changed, 25 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d4e1087201c1..a516ee53f3a9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = lynis3
pkgdesc = Security and system auditing tool to harden Unix/Linux systems
- pkgver = 3.0.2
+ pkgver = 3.0.3
pkgrel = 1
url = https://cisofy.com/lynis
changelog = CHANGELOG.md
@@ -12,13 +12,13 @@ pkgbase = lynis3
optdepends = bind-tools: nameserver tests
optdepends = iptables: firewall tests
optdepends = bash-completion: completion for bash
- provides = lynis=3.0.2
+ provides = lynis=3.0.3
conflicts = lynis
backup = etc/lynis/default.prf
- source = https://downloads.cisofy.com/lynis/lynis-3.0.2.tar.gz
- source = https://downloads.cisofy.com/lynis/lynis-3.0.2.tar.gz.asc
+ source = https://downloads.cisofy.com/lynis/lynis-3.0.3.tar.gz
+ source = https://downloads.cisofy.com/lynis/lynis-3.0.3.tar.gz.asc
validpgpkeys = 73AC9FC55848E977024D1A61429A566FD5B79251
- sha512sums = a23207a1f227f723b3f7a1d46ac84b3cc14b0ac1a9727f57ca3f6f112d1b62ade6e6f21983fb74570aa1209bce8c7b8395f91245309d616c22cd245103028031
+ sha512sums = 850f832fd45a2e440973c414f2c98caf3add1666573f60ea70bf36f57dbf3ac1b354632f09271b34f85eba25079e564d758e237dcded743a132da771c5bce151
sha512sums = SKIP
pkgname = lynis3
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c14bb6d01fd1..dc357c7653ef 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,20 @@
# Lynis Changelog
+## Lynis 3.0.3 (2021-01-07)
+
+### Added
+
+- HRDN-7231 - Check for registered non-native binary formats
+- OS detection of Parrot GNU/Linux
+
+### Changed
+
+- DBS-1816 - Force test to check only password authentication
+- KRNL-5677 - Support for NetBSD
+- Bugfix: command 'configure settings' did not work as intended
+
+---------------------------------------------------------------------------------
+
## Lynis 3.0.2 (2020-12-24)
### Added
diff --git a/PKGBUILD b/PKGBUILD
index 92c26cb746f9..9c5252ae3db7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
pkgname=lynis3
_pkgname="${pkgname%[0-9]*}"
-pkgver=3.0.2
+pkgver=3.0.3
pkgrel=1
pkgdesc='Security and system auditing tool to harden Unix/Linux systems'
@@ -26,7 +26,7 @@ optdepends=('net-tools: networking tests'
changelog=CHANGELOG.md
backup=("etc/$_pkgname/default.prf")
source=("https://downloads.cisofy.com/$_pkgname/$_pkgname-$pkgver.tar.gz"{,.asc})
-sha512sums=('a23207a1f227f723b3f7a1d46ac84b3cc14b0ac1a9727f57ca3f6f112d1b62ade6e6f21983fb74570aa1209bce8c7b8395f91245309d616c22cd245103028031'
+sha512sums=('850f832fd45a2e440973c414f2c98caf3add1666573f60ea70bf36f57dbf3ac1b354632f09271b34f85eba25079e564d758e237dcded743a132da771c5bce151'
'SKIP')
validpgpkeys=('73AC9FC55848E977024D1A61429A566FD5B79251') # CISOfy (Software Signing Key) <security@cisofy.com>
@@ -52,10 +52,11 @@ package() {
install -Dm644 "$_pkgname.8" -t"$pkgdir/usr/share/man/man8/"
# bash completion
- install -Dm644 "extras/bash_completion.d/$_pkgname" -t"$pkgdir/usr/share/bash-completion/completions/"
+ cd extras
+ install -Dm644 "bash_completion.d/$_pkgname" -t"$pkgdir/usr/share/bash-completion/completions/"
# systemd units
- install -Dm644 "extras/systemd/$_pkgname".{service,timer} -t"$pkgdir/usr/lib/systemd/system/"
+ install -Dm644 "systemd/$_pkgname".{service,timer} -t"$pkgdir/usr/lib/systemd/system/"
}