Merge branch 'bugfix/KASM-7305-install_ssh_client_on_ubuntu_develop' into 'develop'

install ssh on ubuntu core

Closes KASM-7305

See merge request kasm-technologies/internal/workspaces-core-images!285
This commit is contained in:
Richard Koliser 2025-06-12 21:07:37 +00:00
commit ff3eb72a4f

View File

@ -45,6 +45,11 @@ else
apt-get install ${PARROTEXTRA} -y vim wget net-tools locales bzip2 wmctrl software-properties-common mesa-utils bc
fi
# Install openssh-client on Ubuntu
if grep -q "ubuntu" /etc/os-release; then
apt-get install -y openssh-client --no-install-recommends
fi
echo "generate locales for en_US.UTF-8"
locale-gen en_US.UTF-8
fi