crowdsec/tests/ansible/vagrant/ubuntu-16.04-xenial/skip
2022-08-04 11:25:34 +02:00

12 lines
234 B
Bash
Executable file

#!/bin/sh
die() {
echo "$@" >&2
exit 1
}
# postgres is too old on this distribution
[ "${DB_BACKEND}" = "postgres" ] && die "skipping: postgres too old"
[ "${DB_BACKEND}" = "pgx" ] && die "skipping: postgres too old"
exit 0