krb5: 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-11 16:55:31 +02:00
parent f2ff06a648
commit ea17cb3fef
+17
View File
@@ -0,0 +1,17 @@
#!/bin/sh
# shellckeck shell=busybox
case "$PKG_NAME" in
krb5-libs|\
krb5-server|\
krb5-server-extras|\
krb5-client)
exit 0
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac