crowdsec/tests/ansible/vagrant/freebsd-12/skip

13 lines
406 B
Plaintext
Raw Normal View History

2022-08-04 09:25:34 +00:00
#!/bin/sh
die() {
echo "$@" >&2
exit 1
}
[ "${PACKAGE_TESTING}" = "true" ] && die "no package available for this distribution"
2022-10-07 14:17:36 +00:00
[ "${DB_BACKEND}" = "postgres" ] && die "postgres role does not support this distribution"
[ "${DB_BACKEND}" = "pgx" ] && die "postgres role does not support this distribution"
[ "${DB_BACKEND}" = "mysql" ] && die "mysql role does not support this distribution"
2022-08-04 09:25:34 +00:00
exit 0