Merge "Add subclass to remove logrotate configurations"

This commit is contained in:
Jenkins 2015-07-17 21:42:43 +00:00 committed by Gerrit Code Review
commit 1dd25cd29d
1 changed files with 8 additions and 0 deletions

8
manifests/fileremoval.pp Normal file
View File

@ -0,0 +1,8 @@
# == Define: logrotate::fileremoval
#
define logrotate::fileremoval ($file = $title) {
file { "/etc/logrotate.d/${file}":
ensure => absent,
}
}