File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
cookbooks/aws-parallelcluster-environment
resources/system_authentication Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
4141- Remove usage of cfn-init for compute node bootstrapping to reduce node scale up time.
4242- Fix the execution of overriding aws-parallelcluster-node package only on the head node during update.
4343- Fix an issue where containerized jobs executed through Pyxis/Enroot in a multi-user environment (integrated with Active Directory) would fail.
44+ - Fix usage of authselect which used to cause node boostrap failures on Rocky 9.5+ when directory service is used.
4445
45463.12.0
4647------
Original file line number Diff line number Diff line change 2828 user 'root'
2929 # Tell NSS, PAM to use SSSD for system authentication and identity information
3030 # authconfig is a compatibility tool, replaced by authselect
31- command "authselect select sssd with-mkhomedir"
31+ command "authselect select sssd with-mkhomedir --force "
3232 sensitive true
3333 default_env true
3434 end
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ def self.configure(chef_run)
6060 'authconfig --enablemkhomedir --enablesssdauth --enablesssd --updateall'
6161 when 'ubuntu'
6262 'pam-auth-update --enable mkhomedir'
63+ when 'rocky'
64+ 'pam-auth-update --enable mkhomedir --force'
6365 else
6466 'authselect select sssd with-mkhomedir'
6567 end
You can’t perform that action at this time.
0 commit comments