crowdsec/test/ansible/vagrant/oracle-7/skip

12 lines
234 B
Plaintext
Raw Permalink Normal View History

2022-08-04 09:25:34 +00:00
#!/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