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

# shellcheck shell=busybox

# uneighbord is a daemon and does not support a --version flag.
case "$PKG_NAME" in
uneighbord)
	exit 0
	;;

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