Merge branch 'bugfix/KASM-2108_mobile_ipc' into 'develop'

KASM-2108 Updated KasmVNC for keyboard and audio contols

Closes KASM-2108

See merge request kasm-technologies/internal/workspaces-core-images!30
This commit is contained in:
Justin Travis 2021-11-16 02:39:55 +00:00
commit 4cc64c2237

View File

@ -4,7 +4,7 @@ set -e
install_libjpeg_turbo() { install_libjpeg_turbo() {
local libjpeg_deb=libjpeg-turbo.deb local libjpeg_deb=libjpeg-turbo.deb
wget 'https://kasmweb-build-artifacts.s3.amazonaws.com/kasmvnc/26f1b52b70dede7bce2f5fe1b1e9c14d2e1069d8/output/bionic/libjpeg-turbo_2.1.2_amd64.deb' -O "$libjpeg_deb" wget 'https://kasmweb-build-artifacts.s3.amazonaws.com/kasmvnc/dc4e4ce3487a1eefe0df1c86bc44d3308ca211b7/output/bionic/libjpeg-turbo_2.1.2_amd64.deb' -O "$libjpeg_deb"
apt-get install -y "./$libjpeg_deb" apt-get install -y "./$libjpeg_deb"
rm "$libjpeg_deb" rm "$libjpeg_deb"
} }
@ -16,14 +16,14 @@ BUILD_ARCH=$(uname -p)
if [ "${DISTRO}" == "kali" ] ; if [ "${DISTRO}" == "kali" ] ;
then then
BUILD_URL="https://kasmweb-build-artifacts.s3.amazonaws.com/kasmvnc/26f1b52b70dede7bce2f5fe1b1e9c14d2e1069d8/kasmvncserver_kali-rolling_0.9.3_master_26f1b5_amd64.deb" BUILD_URL="https://kasmweb-build-artifacts.s3.amazonaws.com/kasmvnc/dc4e4ce3487a1eefe0df1c86bc44d3308ca211b7/kasmvncserver_kali-rolling_0.9.3_master_dc4e4c_amd64.deb"
elif [ "${DISTRO}" == "centos" ] ; then elif [ "${DISTRO}" == "centos" ] ; then
BUILD_URL="https://kasmweb-build-artifacts.s3.amazonaws.com/kasmvnc/26f1b52b70dede7bce2f5fe1b1e9c14d2e1069d8/output/centos_core/kasmvncserver-0.9.1~beta-1.el7.x86_64.rpm" BUILD_URL="https://kasmweb-build-artifacts.s3.amazonaws.com/kasmvnc/dc4e4ce3487a1eefe0df1c86bc44d3308ca211b7/output/centos_core/kasmvncserver-0.9.1~beta-1.el7.x86_64.rpm"
else else
if [[ "${BUILD_ARCH}" =~ ^aarch64$ ]] ; then if [[ "${BUILD_ARCH}" =~ ^aarch64$ ]] ; then
BUILD_URL="https://kasmweb-build-artifacts.s3.amazonaws.com/kasmvnc/26f1b52b70dede7bce2f5fe1b1e9c14d2e1069d8/kasmvncserver_bionic_0.9.3_master_26f1b5_arm64.deb" BUILD_URL="https://kasmweb-build-artifacts.s3.amazonaws.com/kasmvnc/dc4e4ce3487a1eefe0df1c86bc44d3308ca211b7/kasmvncserver_bionic_0.9.3_master_dc4e4c_arm64.deb"
else else
BUILD_URL="https://kasmweb-build-artifacts.s3.amazonaws.com/kasmvnc/26f1b52b70dede7bce2f5fe1b1e9c14d2e1069d8/kasmvncserver_bionic_0.9.3_master_26f1b5_libjpeg-turbo-latest_amd64.deb" BUILD_URL="https://kasmweb-build-artifacts.s3.amazonaws.com/kasmvnc/dc4e4ce3487a1eefe0df1c86bc44d3308ca211b7/kasmvncserver_bionic_0.9.3_master_dc4e4c_libjpeg-turbo-latest_amd64.deb"
fi fi
fi fi