mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-16 14:33:17 +02:00
11 lines
234 B
Bash
Executable file
11 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
|