Merge "Rotate gearman log worker logs."

This commit is contained in:
Jenkins 2013-09-03 17:13:25 +00:00 committed by Gerrit Code Review
commit 3a4b270348

View File

@ -93,4 +93,18 @@ class openstack_project::logstash_worker (
File['/etc/init.d/jenkins-log-worker'],
],
}
include logrotate
logrotate::file { 'log-worker-debug.log':
log => '/var/log/logstash/log-worker-debug.log',
options => [
'compress',
'copytruncate',
'missingok',
'rotate 7',
'daily',
'notifempty',
],
require => Service['jenkins-log-worker'],
}
}