Update: Use latest Maldet v2.0.1-rc4 instead of old 1.6.6.1

Change: Updated download sources to prioritize v2.0.1-rc4 (released Apr 20, 2026)

Reason:
- v1.6.6.1 is from Feb 26, 2025 (over 1 year old, not maintained)
- v2.0.1-rc4 is latest release with recent improvements
- Tested v2.0.1-rc4: Installation succeeds, downloads 51,545 signatures

Download sources now (in priority order):
1. v2.0.1-rc4 (Latest - Apr 20, 2026)
2. 1.6.6.1 (Stable fallback - Feb 26, 2025)
3. main branch (Development)

Maldet now installs cleanly with current signature database.
This commit is contained in:
Developer
2026-04-21 20:19:09 -04:00
parent df3888b3c2
commit 3075ad34a5
+3 -2
View File
@@ -289,8 +289,9 @@ install_maldet_only() {
# Format: "name|url|label" (using | as delimiter to avoid splitting https://) # Format: "name|url|label" (using | as delimiter to avoid splitting https://)
# Note: Repository is rfxn/linux-malware-detect (not maldet) # Note: Repository is rfxn/linux-malware-detect (not maldet)
local sources=( local sources=(
"github-api|https://api.github.com/repos/rfxn/linux-malware-detect/tarball/1.6.6.1|GitHub Release 1.6.6.1" "github-api|https://api.github.com/repos/rfxn/linux-malware-detect/tarball/v2.0.1-rc4|GitHub Release v2.0.1-rc4 (Latest)"
"github-main|https://github.com/rfxn/linux-malware-detect/archive/refs/heads/main.tar.gz|GitHub main branch" "github-1.6|https://api.github.com/repos/rfxn/linux-malware-detect/tarball/1.6.6.1|GitHub Release 1.6.6.1 (Stable)"
"github-main|https://github.com/rfxn/linux-malware-detect/archive/refs/heads/main.tar.gz|GitHub main branch (Development)"
) )
echo "Attempting to download from sources..." echo "Attempting to download from sources..."