None of the shipped binaries (mdnsd, dns-sd, mDNSClient/Net/Proxy*,
mDNSResponder) print the package version, so the generic probe always
fails. Add a test-version.sh exiting 0 for the three subpackages.
Signed-off-by: Alexandru Ardelean <redacted>
--- /dev/null
+#!/bin/sh
+
+# shellcheck shell=busybox
+
+case "$PKG_NAME" in
+mdnsresponder)
+ # Meta package, no executables
+ exit 0
+ ;;
+
+mdnsd|mdns-utils)
+ # None of the shipped binaries print the package version on --help;
+ # upstream just dumps usage. Skip the generic version probe.
+ exit 0
+ ;;
+
+*)
+ echo "Untested package: $PKG_NAME" >&2
+ exit 1
+ ;;
+esac