diff --git a/ohybridproxy/test-version.sh b/ohybridproxy/test-version.sh new file mode 100644 index 0000000..d9b50bc --- /dev/null +++ b/ohybridproxy/test-version.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# shellcheck shell=busybox + +case "$PKG_NAME" in +ohybridproxy|zonestitcher) + # The package version is derived from the source date and git + # hash, which the binaries do not report + exit 0 + ;; + +*) + echo "Untested package: $PKG_NAME" >&2 + exit 1 + ;; +esac