2020-10-24 23:30:27 +07:00
|
|
|
#!/bin/bash -e
|
2019-11-15 15:23:41 -05:00
|
|
|
################################################################################
|
|
|
|
|
## File: repos.sh
|
|
|
|
|
## Desc: Installs official Microsoft package repos for the distribution
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
LSB_RELEASE=$(lsb_release -rs)
|
|
|
|
|
|
|
|
|
|
# Install Microsoft repository
|
|
|
|
|
wget https://packages.microsoft.com/config/ubuntu/$LSB_RELEASE/packages-microsoft-prod.deb
|
|
|
|
|
dpkg -i packages-microsoft-prod.deb
|
2020-11-05 15:53:49 +03:00
|
|
|
|
|
|
|
|
# update
|
2022-06-08 16:31:08 +02:00
|
|
|
apt-get install -y apt-transport-https ca-certificates curl software-properties-common
|
2020-11-05 15:53:49 +03:00
|
|
|
apt-get -yq update
|
|
|
|
|
apt-get -yq dist-upgrade
|