Skip to content

Commit 29e7ff7

Browse files
Himani Anil Deshpandehimani2411
authored andcommitted
Revert "Update the efs-utils patched version checksum and URL"
This reverts commit c8e76a8.
1 parent 76929e8 commit 29e7ff7

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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
1714
due 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

2016
3.13.0
2117
------

cookbooks/aws-parallelcluster-environment/resources/efs/partial/_common.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
default_action :install_utils
44

55
property :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

88
def already_installed?(package_name, expected_version)
99
Gem::Version.new(get_package_version(package_name)) >= Gem::Version.new(expected_version)

cookbooks/aws-parallelcluster-environment/resources/efs/partial/_install_from_tar.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
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)

cookbooks/aws-parallelcluster-environment/test/controls/efs_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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' }

0 commit comments

Comments
 (0)