puppet-ulimit/manifests/init.pp
Colleen Murphy 6ba1a56b65 Add Gemfile and puppet 4 checks
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
2015-08-14 11:02:55 -07:00

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',
}
}