mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-16 22:40:54 +02:00
9 lines
143 B
Bash
9 lines
143 B
Bash
#!/bin/sh
|
|
|
|
die() {
|
|
echo "$@" >&2
|
|
exit 1
|
|
}
|
|
|
|
[ "${DB_BACKEND}" = "mysql" ] && die "mysql role does not support this distribution"
|
|
exit 0
|