blob: de261c754cb3f73723d07cf0981c6b06e2f2cd9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
#
# Version check override for the prosody package.
#
# Neither prosody nor prosodyctl reports its version on any of the flags the
# generic tests probe; the version is only recorded in prosody.version.
case "$1" in
prosody)
grep -F "$2" /usr/lib/prosody/prosody.version
;;
*)
echo "test-version.sh: unknown subpackage '$1' — refusing to silently pass" >&2
echo "test-version.sh: update net/prosody/test-version.sh to cover it" >&2
exit 1
;;
esac
|