Corrected the Nice DCV installer

This commit is contained in:
hamilcarBarca17
2023-03-08 16:33:02 -07:00
parent f29bb1129d
commit 952732d0b6
+5 -2
View File
@@ -17,8 +17,10 @@ prepareStream() {
echo -e "XXX\n0\nInstalling NICE DCV Client... \nXXX" echo -e "XXX\n0\nInstalling NICE DCV Client... \nXXX"
printInfo "Installing NICE DCV Viewer client" printInfo "Installing NICE DCV Viewer client"
# if [[ $kernel == "Linux" ]]; then # if [[ $kernel == "Linux" ]]; then
wget -o nice-dcv-viewer.deb https://d1uj6qtbmh3dt5.cloudfront.net/2022.1/Clients/nice-dcv-viewer_2022.1.4251-1_amd64.ubuntu2004.deb > /dev/null 2>&1 wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1-1ubuntu2.1~18.04.21_amd64.deb > /dev/null 2>&1
echo "$SUDO_PASSWORD" | sudo -k -S sh -c "dpkg -i nice-dcv-viewer.deb" > /dev/null 2>&1 echo "$SUDO_PASSWORD" | sudo -k -S sh -c "dpkg -i libssl1.1_1.1.1-1ubuntu2.1~18.04.21_amd64.deb" > /dev/null 2>&1
wget https://d1uj6qtbmh3dt5.cloudfront.net/2022.1/Clients/nice-dcv-viewer_2022.1.4251-1_amd64.ubuntu2004.deb > /dev/null 2>&1
echo "$SUDO_PASSWORD" | sudo -k -S sh -c "dpkg -i nice-dcv-viewer_2022.1.4251-1_amd64.ubuntu2004.deb" > /dev/null 2>&1
# elif [[ $kernel == "Darwin" ]]; then # elif [[ $kernel == "Darwin" ]]; then
# if [[ $architecture == "x86_64" ]]; then # if [[ $architecture == "x86_64" ]]; then
# wget -o nice-dcv-viewer.dmg https://d1uj6qtbmh3dt5.cloudfront.net/2022.1/Clients/nice-dcv-viewer-2022.1.4279.x86_64.dmg > /dev/null 2>&1 # wget -o nice-dcv-viewer.dmg https://d1uj6qtbmh3dt5.cloudfront.net/2022.1/Clients/nice-dcv-viewer-2022.1.4279.x86_64.dmg > /dev/null 2>&1
@@ -32,6 +34,7 @@ prepareStream() {
echo -e "XXX\n33\nCleaning up... \nXXX" echo -e "XXX\n33\nCleaning up... \nXXX"
printInfo "Removing downloaded DCV Viewer installation" printInfo "Removing downloaded DCV Viewer installation"
rm nice-dcv-viewer* > /dev/null 2>&1 rm nice-dcv-viewer* > /dev/null 2>&1
rm libssl1* > /dev/null 2>&1
echo -e "XXX\n66\nCreating Connection Profile from template... \nXXX" echo -e "XXX\n66\nCreating Connection Profile from template... \nXXX"
createDcvConnectionProfileFromTemplate createDcvConnectionProfileFromTemplate
echo -e "XXX\n100\nDone! \nXXX" echo -e "XXX\n100\nDone! \nXXX"