summaryrefslogtreecommitdiffstats
path: root/net/crowdsec-firewall-bouncer/test-version.sh
blob: afc28766411e9e56d06a2d35a2b2de5bffadca36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

# shellcheck shell=busybox

# cs-firewall-bouncer does not recognize -? for version test

case "$PKG_NAME" in
crowdsec-firewall-bouncer)
	exit 0
	;;

*)
	echo "Untested package: $PKG_NAME" >&2
	exit 1
	;;
esac