mirror of
https://github.com/actions/runner-images.git
synced 2025-12-12 20:26:49 +00:00
* [ubuntu] Rename build scripts * [ubuntu] Change reboot to inline shell * [ubuntu] Move disk space validation to pester tests * [ubuntu] Rename helper and tests files * [ubuntu] Changes to cleanup, post-deployment and r scripts
15 lines
544 B
Bash
15 lines
544 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-mssql-tools.sh
|
|
## Desc: Install MS SQL Server client tools (https://docs.microsoft.com/en-us/sql/linux/sql-server-linux-setup-tools?view=sql-server-2017)
|
|
################################################################################
|
|
|
|
export ACCEPT_EULA=Y
|
|
|
|
apt-get update
|
|
apt-get install -y mssql-tools unixodbc-dev
|
|
apt-get -f install
|
|
ln -s /opt/mssql-tools/bin/* /usr/local/bin/
|
|
|
|
invoke_tests "Tools" "MSSQLCommandLineTools"
|