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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
- Remove usage of cfn-init for compute node bootstrapping to reduce node scale up time.
- Fix the execution of overriding aws-parallelcluster-node package only on the head node during update.
- Fix an issue where containerized jobs executed through Pyxis/Enroot in a multi-user environment (integrated with Active Directory) would fail.
- Fix usage of authselect causing node bootstrap failures on Rocky 9.5+ when directory service is used.

3.12.0
------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
user 'root'
# Tell NSS, PAM to use SSSD for system authentication and identity information
# authconfig is a compatibility tool, replaced by authselect
command "authselect select sssd with-mkhomedir"
command "authselect select sssd with-mkhomedir --force"
sensitive true
default_env true
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ def self.configure(chef_run)
'authconfig --enablemkhomedir --enablesssdauth --enablesssd --updateall'
when 'ubuntu'
'pam-auth-update --enable mkhomedir'
when 'rocky'
'authselect select sssd with-mkhomedir --force'
else
'authselect select sssd with-mkhomedir'
end
Expand Down
Loading