mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-09-10 18:34:18 +08:00
27 lines
1.3 KiB
Bash
Executable File
27 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
# The package ships scripts and an rpcd plugin, no binary of its own, so the
|
|
# generic --version probe cannot apply; check the installed pieces instead.
|
|
|
|
fail() { echo "FAIL: $1"; exit 1; }
|
|
|
|
[ -x /usr/libexec/librespeed-run ] || fail "librespeed-run not installed"
|
|
[ -x /usr/libexec/librespeed-aggregate ] || fail "librespeed-aggregate not installed"
|
|
[ -f /usr/share/rpcd/ucode/librespeed.uc ] || fail "rpcd plugin not installed"
|
|
[ -f /etc/config/librespeed ] || fail "UCI config not installed"
|
|
[ -x /etc/init.d/librespeed ] || fail "init script not installed"
|
|
|
|
sh -n /usr/libexec/librespeed-run || fail "librespeed-run does not parse"
|
|
/usr/libexec/librespeed-run --version | grep librespeed-common \
|
|
|| fail "librespeed-run --version"
|
|
/usr/libexec/librespeed-aggregate --version | grep librespeed-common \
|
|
|| fail "librespeed-aggregate --version"
|
|
sh -n /etc/init.d/librespeed || fail "init script does not parse"
|
|
|
|
# The plugin file has no side effects at load time: it defines its methods
|
|
# and returns them. Run as a file, the way rpcd loads it -- include() cannot
|
|
# be used here, it rejects the module import statements the plugin needs.
|
|
ucode /usr/share/rpcd/ucode/librespeed.uc >/dev/null \
|
|
|| fail "rpcd plugin does not load"
|
|
|
|
echo "librespeed-common: installed files OK"
|