mirror of
https://github.com/openwrt/packages.git
synced 2026-06-17 14:50:07 +04:00
ea17cb3fef
Skip version checks as none of the executables seem to report their versions. Signed-off-by: George Sapkin <george@sapk.in>
18 lines
192 B
Bash
Executable File
18 lines
192 B
Bash
Executable File
#!/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
|