Merge "Remove the mqtt options from logstash::indexer"

This commit is contained in:
Jenkins 2017-08-02 18:20:16 +00:00 committed by Gerrit Code Review
commit 515357a301
1 changed files with 0 additions and 12 deletions

View File

@ -31,8 +31,6 @@ class logstash::indexer (
$conf_template = undef,
$input_template = 'logstash/input.conf.erb',
$output_template = 'logstash/output.conf.erb',
$enable_mqtt = false,
$mqtt_ca_cert_contents = undef,
) {
include ::logstash
@ -86,16 +84,6 @@ class logstash::indexer (
mode => '0644',
require => Class['logstash'],
}
if $enable_mqtt {
file { '/etc/logstash/mqtt-root-CA.pem.crt':
ensure => present,
content => $mqtt_ca_cert_contents,
owner => 'logstash',
group => 'logstash',
mode => '0600',
notify => Service['logstash']
}
}
service { 'logstash':
ensure => running,
enable => true,