vsftpd: add version check override

Skip version checks as none of the executables seem to report their
versions.

Signed-off-by: George Sapkin <george@sapk.in>
This commit is contained in:
George Sapkin
2026-05-24 23:33:41 +03:00
parent da5b99f7c7
commit 12cb2ccffd
2 changed files with 14 additions and 0 deletions
+14
View File
@@ -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