Add logging to manage-projects calls

Sometimes there is a need to debug why a project is not being
created or ACLs are not properly refreshed.
The way we call manage-projects leaves no trace of debug
messages to inspect failures.

Add a -v flag to the manage-projects calls to display
verbose output, and send logging to a custom logfile

Change-Id: I389bd2b128a82a745f6946cbe87c22aa208c161c
This commit is contained in:
Yolanda Robla 2014-07-31 14:01:54 +02:00 committed by Monty Taylor
parent 28763cb29b
commit e817d0398e

View File

@ -435,7 +435,7 @@ class openstack_project::gerrit (
if ($testmode == false) {
exec { 'manage_projects':
command => '/usr/local/bin/manage-projects',
command => '/usr/local/bin/manage-projects -v >> /var/log/manage_projects.log 2>&1',
timeout => 900, # 15 minutes
subscribe => [
File['/home/gerrit2/projects.yaml'],
@ -449,6 +449,20 @@ class openstack_project::gerrit (
Class['jeepyb'],
],
}
include logrotate
logrotate::file { 'manage_projects.log':
log => '/var/log/manage_projects.log',
options => [
'compress',
'missingok',
'rotate 30',
'daily',
'notifempty',
'copytruncate',
],
require => Exec['manage_projects'],
}
}
}
file { '/home/gerrit2/review_site/bin/set_agreements.sh':