
Add a feature flag to allow this module to manage its own log configuration files. This feature flag is set to false currently. Configuration files for logging come from system-config/openstack-project. The related system-config change is Ic5ceb7fb23a8403a31f9db2774ddd900fd838930. Change-Id: I76851c8672968a7581622cac8ff0062c1f50e0ef
97 lines
2.4 KiB
Puppet
97 lines
2.4 KiB
Puppet
# Copyright 2012-2013 Hewlett-Packard Development Company, L.P.
|
|
# Copyright 2014 OpenStack Foundation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# == Class: zuul::server
|
|
#
|
|
class zuul::server (
|
|
$layout_dir = '',
|
|
$manage_log_conf = false,
|
|
) {
|
|
service { 'zuul':
|
|
name => 'zuul',
|
|
enable => true,
|
|
hasrestart => true,
|
|
require => File['/etc/init.d/zuul'],
|
|
}
|
|
|
|
exec { 'zuul-reload':
|
|
command => '/etc/init.d/zuul reload',
|
|
require => File['/etc/init.d/zuul'],
|
|
refreshonly => true,
|
|
}
|
|
|
|
file { '/etc/zuul/layout':
|
|
ensure => directory,
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0755',
|
|
recurse => true,
|
|
purge => true,
|
|
force => true,
|
|
source => $layout_dir,
|
|
require => File['/etc/zuul'],
|
|
notify => Exec['zuul-reload'],
|
|
}
|
|
|
|
if $manage_log_conf {
|
|
file { '/etc/zuul/logging.conf':
|
|
ensure => present,
|
|
source => 'puppet:///modules/zuul/logging.conf',
|
|
notify => Exec['zuul-reload'],
|
|
}
|
|
|
|
file { '/etc/zuul/gearman-logging.conf':
|
|
ensure => present,
|
|
source => 'puppet:///modules/zuul/gearman-logging.conf',
|
|
notify => Exec['zuul-reload'],
|
|
}
|
|
}
|
|
|
|
include logrotate
|
|
logrotate::file { 'zuul.log':
|
|
log => '/var/log/zuul/zuul.log',
|
|
options => [
|
|
'compress',
|
|
'missingok',
|
|
'rotate 30',
|
|
'daily',
|
|
'notifempty',
|
|
],
|
|
require => Service['zuul'],
|
|
}
|
|
logrotate::file { 'zuul-debug.log':
|
|
log => '/var/log/zuul/debug.log',
|
|
options => [
|
|
'compress',
|
|
'missingok',
|
|
'rotate 30',
|
|
'daily',
|
|
'notifempty',
|
|
],
|
|
require => Service['zuul'],
|
|
}
|
|
logrotate::file { 'gearman-server.log':
|
|
log => '/var/log/zuul/gearman-server.log',
|
|
options => [
|
|
'compress',
|
|
'missingok',
|
|
'rotate 7',
|
|
'daily',
|
|
'notifempty',
|
|
],
|
|
require => Service['zuul'],
|
|
}
|
|
}
|