summaryrefslogtreecommitdiffstats
path: root/net/rpcbind/test-version.sh
blob: be8e312740eee68fcd0f0fd86a1e5368ca664a5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

# shellcheck shell=busybox

case "$PKG_NAME" in
rpcbind)
	# The -v flag is implemented in version 1.2.8+
	# rpcbind -v 2>&1 | grep -F "$PKG_VERSION"
	exit 0
	;;

*)
	echo "Untested package: $PKG_NAME" >&2
	exit 1
	;;
esac