2020-10-07 13:49:40 +05:00
|
|
|
#!/bin/bash -e
|
2019-12-13 09:48:00 -05:00
|
|
|
################################################################################
|
|
|
|
|
## File: powershellcore.sh
|
|
|
|
|
## Desc: Installs powershellcore
|
|
|
|
|
################################################################################
|
|
|
|
|
|
2022-05-02 10:46:10 +02:00
|
|
|
# Source the helpers for use with the script
|
|
|
|
|
source $HELPER_SCRIPTS/os.sh
|
|
|
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
|
|
|
|
|
|
if isUbuntu22; then
|
|
|
|
|
# Install libssl1.1
|
2022-05-06 10:11:47 +02:00
|
|
|
download_with_retries "http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1l-1ubuntu1.3_amd64.deb" "/tmp"
|
|
|
|
|
dpkg -i /tmp/libssl1.1_1.1.1l-1ubuntu1.3_amd64.deb
|
2022-05-02 10:46:10 +02:00
|
|
|
|
|
|
|
|
# Install Powershell
|
|
|
|
|
download_with_retries "https://github.com/PowerShell/PowerShell/releases/download/v7.2.3/powershell-lts_7.2.3-1.deb_amd64.deb" "/tmp"
|
|
|
|
|
dpkg -i /tmp/powershell-lts_7.2.3-1.deb_amd64.deb
|
|
|
|
|
else
|
|
|
|
|
# Install Powershell
|
|
|
|
|
apt-get install -y powershell
|
|
|
|
|
fi
|