File tree Expand file tree Collapse file tree 4 files changed +3
-7
lines changed
cookbooks/aws-parallelcluster-environment Expand file tree Collapse file tree 4 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,9 @@ This file is used to list changes made in each version of the AWS ParallelCluste
99** CHANGES**
1010- Upgrade Slurm to version 24.05.8.
1111
12- ** BUG FIXES**
13- - Use ` v2.1.0-patched.tar.gz ` which pins backtrace version to v3.0.74
14-
1512** BUG FIXES**
1613- Fix a bug in the installation of ARM Performance Library that was causing the build image fail in isolated environments
1714due to cookbook retrieving GCC dependencies from GCC website rather than ParallelCluster bucket.
18- - Use patched version of efs-utils v2.1.0 which pins backtrace version to v3.0.74 to resolve build image failure.
1915
20163.13.0
2117------
Original file line number Diff line number Diff line change 33default_action :install_utils
44
55property :efs_utils_version , String , default : '2.1.0'
6- property :efs_utils_checksum , String , default : 'f257a9859059710bcd8a4a870de2a8f11574b2615feeb7989b764820a9f0c887 '
6+ property :efs_utils_checksum , String , default : '2996bdd5387131d302310812fa1e07e1be00f80814a580f5dfeb27d68519fd24 '
77
88def already_installed? ( package_name , expected_version )
99 Gem ::Version . new ( get_package_version ( package_name ) ) >= Gem ::Version . new ( expected_version )
Original file line number Diff line number Diff line change 3232 package_name = "amazon-efs-utils"
3333 package_version = new_resource . efs_utils_version
3434 efs_utils_tarball = "#{ node [ 'cluster' ] [ 'sources_dir' ] } /efs-utils-#{ package_version } .tar.gz"
35- efs_utils_url = "#{ node [ 'cluster' ] [ 'artifacts_s3_url' ] } /dependencies/efs/v#{ package_version } -patched .tar.gz"
35+ efs_utils_url = "#{ node [ 'cluster' ] [ 'artifacts_s3_url' ] } /dependencies/efs/v#{ package_version } .tar.gz"
3636
3737 # Do not install efs-utils if a same or newer version is already installed.
3838 return if already_installed? ( package_name , package_version )
Original file line number Diff line number Diff line change 66
77 describe file ( "#{ node [ 'cluster' ] [ 'sources_dir' ] } /efs-utils-2.1.0.tar.gz" ) do
88 it { should exist }
9- its ( 'sha256sum' ) { should eq 'f257a9859059710bcd8a4a870de2a8f11574b2615feeb7989b764820a9f0c887 ' }
9+ its ( 'sha256sum' ) { should eq '2996bdd5387131d302310812fa1e07e1be00f80814a580f5dfeb27d68519fd24 ' }
1010 its ( 'owner' ) { should eq 'root' }
1111 its ( 'group' ) { should eq 'root' }
1212 its ( 'mode' ) { should cmp '0644' }
You can’t perform that action at this time.
0 commit comments