We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11cbe95 commit 56fe50cCopy full SHA for 56fe50c
gpu/install_gpu_driver.sh
@@ -1945,7 +1945,8 @@ function mount_ramdisk(){
1945
function harden_sshd_config() {
1946
# disable sha1 and md5 use in kex and kex-gss features
1947
declare -A feature_map=(["kex"]="kexalgorithms")
1948
- if ( ! is_ubuntu || ge_ubuntu20 ) ; then feature_map["kex-gss"]="gssapikexalgorithms" ; fi
+ if ( is_rocky || version_ge "${DATAPROC_IMAGE_VERSION}" "2.1" ) ; then
1949
+ feature_map["kex-gss"]="gssapikexalgorithms" ; fi
1950
for ftr in "${!feature_map[@]}" ; do
1951
export feature=${feature_map[$ftr]}
1952
sshd_config_line=$(
0 commit comments