18 lines
427 B
Puppet
18 lines
427 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_monitoring
|
|
include ::profile_motd
|
|
include ::profile_pam_access
|
|
include ::profile_sudo
|
|
# include ::profile_timezone
|
|
include ::profile_system_auth
|
|
include ::profile_virtual
|
|
include ::sshd
|
|
|
|
}
|