Files
George Sapkin 39795762f5 xupnpd: add version check override
Skip version checks as none of the executables seem to report their
versions.

Signed-off-by: George Sapkin <george@sapk.in>
2026-05-25 08:02:47 +03:00

15 lines
140 B
Bash
Executable File

#!/bin/sh
# shellcheck shell=busybox
case "$PKG_NAME" in
xupnpd)
exit 0
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac