Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ aws-parallelcluster-cookbook CHANGELOG
======================================

This file is used to list changes made in each version of the AWS ParallelCluster cookbook.

3.13.0
------

Expand All @@ -18,6 +19,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
- yum-epel-5.0.8 (from yum-epel-5.0.2)
- Upgrade Pmix to 5.0.6 (from 5.0.3).
- Upgrade ARM PL to version 24.10 (from 23.10).
- Remove generation of DSA keys for login nodes as DSA, which became unsupported in OpenSSH 9.7+.

3.12.0
------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ function create_keys() {
ssh-keygen -t ecdsa -f "$FOLDER_PATH/ssh_host_ecdsa_key" -q -P ""
ssh-keygen -t ed25519 -f "$FOLDER_PATH/ssh_host_ed25519_key" -q -P ""
ssh-keygen -t rsa -f "$FOLDER_PATH/ssh_host_rsa_key" -q -P ""
if is_ubuntu; then
ssh-keygen -t dsa -f "$FOLDER_PATH/ssh_host_dsa_key" -q -P ""
fi
}

function import_keys() {
Expand All @@ -50,7 +47,6 @@ function import_keys() {
cp "$FOLDER_PATH/ssh_host_ed25519"* /etc/ssh/
cp "$FOLDER_PATH/ssh_host_rsa"* /etc/ssh/
if is_ubuntu; then
cp "$FOLDER_PATH/ssh_host_dsa"* /etc/ssh/
chown root:root /etc/ssh/ssh_host_*
chmod 600 /etc/ssh/ssh_host_*_key
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@

key_types = %w(ecdsa ed25519 rsa)
is_ubuntu = os_properties.ubuntu?
if is_ubuntu
key_types << 'dsa'
end

control 'head_node_directory_initialized' do
only_if { instance.head_node? && node['cluster']['scheduler'] != 'awsbatch' }
Expand Down
Loading