summaryrefslogtreecommitdiffstats
path: root/net/bird3/test-version.sh
blob: 665570760520895288b66b95dc6391c102072596 (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
bird3|bird3c|bird3cl)
	# birdc and birdcl do not report a version; check the daemon,
	# which both clients depend on anyway
	bird --version 2>&1 | grep -F "$PKG_VERSION"
	;;

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