Split out logrotate

Change-Id: Id4bc423205a9c933c9cadb556d9f35d67f548c5b
This commit is contained in:
Ramy Asselin 2015-01-28 11:36:23 -08:00 committed by Joshua Hesketh
parent e7944179af
commit 9aacd3d321
4 changed files with 1 additions and 65 deletions

View File

@ -74,6 +74,7 @@ INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-zuul"]="or
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-kibana"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-lodgeit"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-log_processor"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-logrotate"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-logstash"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-meetbot"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-mysql_backup"]="origin/master"

View File

@ -1,24 +0,0 @@
# == Define: logrotate::file
#
define logrotate::file( $log,
$options,
$ensure=present,
$prerotate='undef',
$postrotate='undef',
$firstaction='undef',
$lastaction='undef') {
# $options should be an array containing 1 or more logrotate
# directives (e.g. missingok, compress).
include logrotate
file { "/etc/logrotate.d/${name}":
ensure => $ensure,
owner => 'root',
group => 'root',
mode => '0644',
content => template('logrotate/config.erb'),
require => File['/etc/logrotate.d'],
}
}

View File

@ -1,17 +0,0 @@
# == Class: logrotate
#
# Adapted from http://projects.puppetlabs.com/projects/1/wiki/Logrotate_Patterns
#
class logrotate {
package { 'logrotate':
ensure => present,
}
file { '/etc/logrotate.d':
ensure => directory,
owner => 'root',
group => 'root',
mode => '0755',
require => Package['logrotate'],
}
}

View File

@ -1,24 +0,0 @@
<%= @log %> {
<% @options.each do |opt| -%> <%= opt %>
<% end -%>
<% if @prerotate != 'undef' -%>
prerotate
<%= @prerotate %>
endscript
<% end -%>
<% if @postrotate != 'undef' -%>
postrotate
<%= @postrotate %>
endscript
<% end -%>
<% if @firstaction != 'undef' -%>
firstaction
<%= @firstaction %>
endscript
<% end -%>
<% if @lastaction != 'undef' -%>
lastaction
<%= @lastaction %>
endscript
<% end -%>
}