KASM-5419 Ensure correct packages are installed for recorder startup in alpine

This commit is contained in:
Ian Tangney 2024-01-10 16:59:58 +00:00
parent af9a707dd4
commit 79cd2ab334
No known key found for this signature in database

View File

@ -2,6 +2,12 @@
### every exit != 0 fails the script
set -e
if [[ "${DISTRO}" == "alpine" ]]; then
apk add --no-cache \
runuser \
xhost
fi
COMMIT_ID="75cf09992503e77a94b5f5c4deba7fc1daad4f5a"
BRANCH="bugfix_KASM-5419_fix_session_recorder_on_all_distros"
COMMIT_ID_SHORT=$(echo "${COMMIT_ID}" | cut -c1-6)