summaryrefslogtreecommitdiffstats
path: root/net/krb5/test-version.sh
blob: a5b9278c1dd49f1c24c90248b3e4d2bdf25d2430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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