
Add basic sssd data for NCSA setup common NCSA settings for SSSD Setup sssd debug_level Add profile hiera data enable and include profile_allow_ssh_from_bastion enable ncsa/sshd added groups for allow_ssh_from_bastion to control repo Remove simple_allow_groups from default sssd and let ssh add them Add default bastion_nodelist to control repo Upgrade concat module include ::pam_access point to latest tag of profile_pam_access point profile_pam_access to topic branch Update to ncsa/sshd v0.3.0 Update profile_allow_ssh_from_bastion to v0.2.0 Update profile_pam_access to v0.0.4
15 lines
338 B
Puppet
15 lines
338 B
Puppet
# Include basic profile classes
|
|
class profile::base {
|
|
|
|
include ::profile_additional_packages
|
|
include ::profile_additional_yumrepos
|
|
include ::profile_allow_ssh_from_bastion
|
|
# include ::profile_email
|
|
include ::profile_pam_access
|
|
# include ::profile_sudo
|
|
# include ::profile_timezone
|
|
include ::profile::sssd
|
|
include ::sshd
|
|
|
|
}
|