--- resources/bootstrap/virtual-desktop-host-linux/install.sh 2024-06-11 13:13:25 +++ resources/bootstrap/virtual-desktop-host-linux/install.sh 2024-07-11 16:43:24 @@ -107,6 +107,9 @@ if [[ $BASE_OS =~ ^(ubuntu2204)$ ]]; then apt update + apt-get upgrade openssh-client -y + apt-get upgrade openssh-server -y + apt-get upgrade openssh-sftp-server -y else yum install -y deltarpm @@ -118,6 +121,10 @@ /bin/bash "${SCRIPT_DIR}/../common/s3_mountpoint.sh" -o $RES_BASE_OS -r $AWS_REGION -n $RES_ENVIRONMENT_NAME -s "${SCRIPT_DIR}" # End: Install S3 Mountpoint fi + + if [[ $BASE_OS =~ ^(rhel9)$ ]]; then + yum -y upgrade openssh + fi # Begin: Install AWS Systems Manager Agent /bin/bash "${SCRIPT_DIR}/../common/aws_ssm.sh" -o $RES_BASE_OS -r $AWS_REGION -n $RES_ENVIRONMENT_NAME -s "${SCRIPT_DIR}"