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

# shellcheck shell=busybox

# None of the ddns-scripts executables or scripts print the package version.
# Skip the generic version probe.

case "$PKG_NAME" in
ddns-scripts*)
	exit 0
	;;

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