Don't use apt-get add on Debian Bullseye
parent
89263593b5
commit
f40863af77
|
@ -1385,7 +1385,12 @@ installMicrosoftSqlServerODBC() {
|
||||||
debian)
|
debian)
|
||||||
# https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server#debian17
|
# https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server#debian17
|
||||||
printf -- '- installing the Microsoft APT key\n'
|
printf -- '- installing the Microsoft APT key\n'
|
||||||
curl -sSLf https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
|
if test $DISTRO_VERSION_NUMBER -ge 11; then
|
||||||
|
# apt-key is deprecated
|
||||||
|
curl -sSLf -o /etc/apt/trusted.gpg.d/microsoft.asc https://packages.microsoft.com/keys/microsoft.asc
|
||||||
|
else
|
||||||
|
curl -sSLf https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
|
||||||
|
fi
|
||||||
if ! test -f /etc/apt/sources.list.d/mssql-release.list; then
|
if ! test -f /etc/apt/sources.list.d/mssql-release.list; then
|
||||||
printf -- '- adding the Microsoft APT source list\n'
|
printf -- '- adding the Microsoft APT source list\n'
|
||||||
curl -sSLf https://packages.microsoft.com/config/debian/$DISTRO_VERSION_NUMBER/prod.list >/etc/apt/sources.list.d/mssql-release.list
|
curl -sSLf https://packages.microsoft.com/config/debian/$DISTRO_VERSION_NUMBER/prod.list >/etc/apt/sources.list.d/mssql-release.list
|
||||||
|
|
Loading…
Reference in New Issue