Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions cookbooks/aws-parallelcluster-slurm/attributes/versions.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Slurm
default['cluster']['slurm']['version'] = '24-11-7-1'
default['cluster']['slurm']['version'] = '25-11-2-1'
default['cluster']['slurm']['commit'] = ''
default['cluster']['slurm']['branch'] = ''
default['cluster']['slurm']['sha256'] = 'f0912d85a9a9b417fd23ca4997c8d3dfed89b3b70b15aad4da54f2812d30d48c'
default['cluster']['slurm']['sha256'] = '719783317e46b6241ab5c8f1e3f91e1e34fda63b5a1cd21403fa7696ec8d517c'
default['cluster']['slurm']['base_url'] = "#{node['cluster']['artifacts_s3_url']}/dependencies/slurm"
# Munge
default['cluster']['munge']['munge_version'] = '0.5.16'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@
cp -v COPYING #{node['cluster']['license_dir']}/slurm/COPYING
cp -v DISCLAIMER #{node['cluster']['license_dir']}/slurm/DISCLAIMER
cp -v LICENSE.OpenSSL #{node['cluster']['license_dir']}/slurm/LICENSE.OpenSSL
cp -v README.rst #{node['cluster']['license_dir']}/slurm/README.rst
cp -v README.md #{node['cluster']['license_dir']}/slurm/README.md
Copy link
Contributor

@gmarciani gmarciani Jan 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The goal here is to include license related files. If the README does not contain any additional info about licensing, then we can remove it rather than fixing it.

What we can do is in this PR is fixing to immediately unblock.
The check with legals if we need to include the readme for whatever reason.

SLURMLICENSE
# TODO: Fix, so it works for upgrade
creates "#{node['cluster']['license_dir']}/slurm/README.rst"
creates "#{node['cluster']['license_dir']}/slurm/README.md"
end

file '/etc/ld.so.conf.d/slurm.conf' do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
its('group') { should eq 'root' }
end

describe file("#{slurm_license_path}/README.rst") do
describe file("#{slurm_license_path}/README.md") do
it { should exist }
its('mode') { should cmp '0644' }
its('owner') { should eq 'root' }
Expand Down
Loading