mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
5b9e2dd55e
dbus-utils utilities do not implement --version so the generic CI version check fails for them. Add a test.sh case that verifies the binaries are present and executable instead. dbus-utils: dbus-monitor, dbus-send, dbus-test-tool Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
11 lines
216 B
Bash
11 lines
216 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
dbus-utils)
|
|
# dbus-monitor, dbus-send, dbus-test-tool do not implement --version
|
|
for bin in dbus-monitor dbus-send dbus-test-tool; do
|
|
[ -x "/usr/bin/$bin" ] || exit 1
|
|
done
|
|
;;
|
|
esac
|