Release 2.5.0 - See CHANGELOG.md

This commit is contained in:
Dave Conroy
2021-01-25 16:39:42 -08:00
parent 1930358775
commit 34aab69cc2
4 changed files with 54 additions and 25 deletions

View File

@@ -42,6 +42,11 @@ case "$dbtype" in
[[ ( -n "${DB_PASS}" ) || ( -n "${DB_PASS_FILE}" ) ]] && file_env 'DB_PASS'
;;
"mssql" | "MSSQL" | "microsoftsql" | "MICROSOFTSQL")
apkArch="$(apk --print-arch)"; \
case "$apkArch" in
x86_64) mssql=true ;;
*) print_error "MSSQL cannot operate on $apkArch processor!" ; exit 1 ;;
esac
dbtype=mssql
dbport=${DB_PORT:-1433}
;;