From: Josef Schlehofer Date: Tue, 30 Jun 2026 13:33:13 +0000 (+0200) Subject: ddns-scripts: add version check override X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=ed32ce42d23614fa2f169b36cb3483bed1f0e088;p=openwrt-packages.git ddns-scripts: add version check override None of the ddns-scripts executables or scripts report the package version when run, which causes the generic version probe to fail. Add a test-version.sh to skip the version check for ddns-scripts and all of its subpackages. Signed-off-by: Josef Schlehofer --- diff --git a/net/ddns-scripts/test-version.sh b/net/ddns-scripts/test-version.sh new file mode 100755 index 000000000..02b5df814 --- /dev/null +++ b/net/ddns-scripts/test-version.sh @@ -0,0 +1,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