@@ -9,21 +9,21 @@ export DEBIAN_FRONTEND="noninteractive"
9
9
# Ensure hostname is recognised
10
10
sudo sed -i " s/^127\.0\.0\.1.*/127.0.0.1 localhost $HOSTNAME /g" /etc/hosts
11
11
# Install pre-requisites
12
- sudo apt-get -y -q update
12
+ sudo apt-get -y -qq update
13
13
# # Ubuntu 16.04 does not deliver add-apt-repository by default
14
- sudo apt-get -y -q install curl software-properties-common
14
+ sudo apt-get -y -qq install curl software-properties-common
15
15
# Pre-installation
16
16
curl -s -S --retry 3 https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
17
17
# # Repository Microsoft SQL Server
18
18
sudo add-apt-repository " $( curl -s -S --retry 3 https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-2017.list) "
19
19
# # Repository SQL Server command-line tools
20
20
sudo add-apt-repository " $( curl -s -S --retry 3 https://packages.microsoft.com/config/ubuntu/16.04/prod.list) "
21
- sudo apt-get -y -q update
22
- sudo -E bash -c ' apt-get -y -q install mssql-server'
23
- sudo -E bash -c ' apt-get -y -q install mssql-tools'
21
+ sudo apt-get -y -qq update
22
+ sudo -E bash -c ' apt-get -y -qq install mssql-server'
23
+ sudo -E bash -c ' apt-get -y -qq install mssql-tools'
24
24
# Clean up
25
- sudo apt-get -y -q autoremove
26
- sudo apt-get -y -q clean
25
+ sudo apt-get -y -qq autoremove
26
+ sudo apt-get -y -qq clean
27
27
# Post-installation
28
28
echo " SQLServer: running /opt/mssql/bin/mssql-conf -n setup"
29
29
echo " SQLServer: MSSQL_PID=$MSSQL_PID "
0 commit comments