6ba1a56b65
In anticipation of puppet 4, start trying to deal with puppet 4 things that can be helpfully predicted by puppet lint plugins. Also fix lint errors caught by the puppet-lint-absolute_classname-check gem. Change-Id: Id76d7b70858af54014c0eccb64919417cdfebae3
18 lines
249 B
Puppet
18 lines
249 B
Puppet
# == Class: ulimit
|
|
#
|
|
class ulimit {
|
|
|
|
include ::ulimit::params
|
|
|
|
package { $::ulimit::params::pam_packages:
|
|
ensure => present,
|
|
}
|
|
|
|
file { '/etc/security/limits.d':
|
|
ensure => directory,
|
|
owner => 'root',
|
|
mode => '0755',
|
|
}
|
|
|
|
}
|