
In anticipation of puppet 4, start trying to deal with puppet 4 things that can be helpfully predicted by puppet lint plugins. Also fix lint errors caught by the puppet-lint-absolute_classname-check and puppet-lint-empty_string-check gems. This patch changes a scope.lookupvar function call to ruby instance variable in the jenkins-log-client.default.erb template. This is safe to do because the template is called in the log_processor::client class and the variable in question is within that scope. Change-Id: Ia7d6af8bc76a65e37f5dfd184e37855fe3b97046
68 lines
1.9 KiB
Puppet
68 lines
1.9 KiB
Puppet
# Copyright 2012-2013 Hewlett-Packard Development Company, L.P.
|
|
# Copyright 2013 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: log_processor::worker
|
|
#
|
|
define log_processor::worker (
|
|
$config_file,
|
|
) {
|
|
$suffix = "-${name}"
|
|
|
|
file { "/etc/logstash/jenkins-log-worker${suffix}.yaml":
|
|
ensure => present,
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0555',
|
|
source => $config_file,
|
|
require => Class['logstash::indexer'],
|
|
}
|
|
|
|
file { "/etc/init.d/jenkins-log-worker${suffix}":
|
|
ensure => present,
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0555',
|
|
content => template('log_processor/jenkins-log-worker.init.erb'),
|
|
require => [
|
|
File['/usr/local/bin/log-gearman-worker.py'],
|
|
File["/etc/logstash/jenkins-log-worker${suffix}.yaml"],
|
|
],
|
|
}
|
|
|
|
service { "jenkins-log-worker${suffix}":
|
|
enable => true,
|
|
hasrestart => true,
|
|
subscribe => File["/etc/logstash/jenkins-log-worker${suffix}.yaml"],
|
|
require => [
|
|
Class['logstash::indexer'],
|
|
File["/etc/init.d/jenkins-log-worker${suffix}"],
|
|
],
|
|
}
|
|
|
|
include ::logrotate
|
|
logrotate::file { "log-worker${suffix}-debug.log":
|
|
log => "/var/log/logstash/log-worker${suffix}-debug.log",
|
|
options => [
|
|
'compress',
|
|
'copytruncate',
|
|
'missingok',
|
|
'rotate 7',
|
|
'daily',
|
|
'notifempty',
|
|
],
|
|
require => Service["jenkins-log-worker${suffix}"],
|
|
}
|
|
}
|