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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ This file is used to list changes made in each version of the AWS ParallelCluste
**CHANGES**
- Add chef attribute `cluster/in_place_update_on_fleet_enabled` to disable in-place updates on compute and login nodes
and achieve better performance at scale.
- Load kernel module `drm_client_lib` before installation of NVIDIA driver, if available on the kernel.
- Load kernel module `drm_client_lib` before installation of NVIDIA driver, if available on the kernel.
- Reduce dependency footprint by installing the package `sssd-common` rather than `sssd`.


3.14.0
------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@

action_class do
def required_packages
%w(sssd sssd-tools sssd-ldap)
%w(sssd-common sssd-tools sssd-ldap)
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@

action_class do
def required_packages
%w(sssd sssd-tools sssd-ldap authconfig)
%w(sssd-common sssd-tools sssd-ldap authconfig)
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@

action_class do
def required_packages
%w(sssd sssd-tools sssd-ldap authconfig)
%w(sssd-common sssd-tools sssd-ldap authconfig)
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@

action_class do
def required_packages
%w(sssd sssd-tools sssd-ldap authselect oddjob-mkhomedir)
%w(sssd-common sssd-tools sssd-ldap authselect oddjob-mkhomedir)
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@

action_class do
def required_packages
%w(sssd sssd-tools sssd-ldap authselect oddjob-mkhomedir)
%w(sssd-common sssd-tools sssd-ldap authselect oddjob-mkhomedir)
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ def self.configure(chef_run)
cached(:required_packages) do
case platform
when 'amazon', 'centos'
%w(sssd sssd-tools sssd-ldap authconfig)
%w(sssd-common sssd-tools sssd-ldap authconfig)
when 'redhat', 'rocky'
%w(sssd sssd-tools sssd-ldap authselect oddjob-mkhomedir)
%w(sssd-common sssd-tools sssd-ldap authselect oddjob-mkhomedir)
else
%w(sssd sssd-tools sssd-ldap)
%w(sssd-common sssd-tools sssd-ldap)
end
end
cached(:chef_run) do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
control 'tag:install_system_authentication_packages_installed' do
title 'Check that system authentication packages are installed correctly'

packages = %w(sssd sssd-tools sssd-ldap)
packages = %w(sssd-common sssd-tools sssd-ldap)

if os_properties.redhat8?
packages.append("authselect")
Expand Down
Loading