From: George Sapkin Date: Sun, 24 May 2026 20:33:41 +0000 (+0300) Subject: vsftpd: add version check override X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=12cb2ccffd890dbfdc81afc5b05fc300ce0cc573;p=openwrt-packages.git vsftpd: add version check override Skip version checks as none of the executables seem to report their versions. Signed-off-by: George Sapkin --- diff --git a/net/vsftpd/test-version.sh b/net/vsftpd/test-version.sh new file mode 100755 index 000000000..add23ed6f --- /dev/null +++ b/net/vsftpd/test-version.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +# shellcheck shell=busybox + +case "$PKG_NAME" in +vsftpd|vsftpd-tls) + exit 0 + ;; + +*) + echo "Untested package: $PKG_NAME" >&2 + exit 1 + ;; +esac diff --git a/utils/lm-sensors/test-version.sh b/utils/lm-sensors/test-version.sh old mode 100644 new mode 100755