File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
cookbooks/aws-parallelcluster-environment Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
1212** BUG FIXES**
1313- Fix a bug in the installation of ARM Performance Library that was causing the build image fail in isolated environments
1414due to cookbook retrieving GCC dependencies from GCC website rather than ParallelCluster bucket.
15+ - Upgrade amazon-efs-utils to version 2.3.1 (from v2.1.0).
1516
16173.13.0
1718------
Original file line number Diff line number Diff line change 22
33default_action :install_utils
44
5- property :efs_utils_version , String , default : '2.1.0 '
6- property :efs_utils_checksum , String , default : '2996bdd5387131d302310812fa1e07e1be00f80814a580f5dfeb27d68519fd24 '
5+ property :efs_utils_version , String , default : '2.3.1 '
6+ property :efs_utils_checksum , String , default : 'ced12f82e76f9740476b63f30c49bd76cc00b6375e12a9f5f7ba852635c49e15 '
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 44
55 only_if { !os_properties . redhat_on_docker? }
66
7- describe file ( "#{ node [ 'cluster' ] [ 'sources_dir' ] } /efs-utils-2.1.0 .tar.gz" ) do
7+ describe file ( "#{ node [ 'cluster' ] [ 'sources_dir' ] } /efs-utils-2.3.1 .tar.gz" ) do
88 it { should exist }
9- its ( 'sha256sum' ) { should eq '2996bdd5387131d302310812fa1e07e1be00f80814a580f5dfeb27d68519fd24 ' }
9+ its ( 'sha256sum' ) { should eq 'ced12f82e76f9740476b63f30c49bd76cc00b6375e12a9f5f7ba852635c49e15 ' }
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