Puppet Class: stackdriver::plugin::elasticsearch::config
- Inherits:
- stackdriver::plugin::elasticsearch
- Defined in:
- manifests/plugin/elasticsearch/config.pp
Overview
vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 foldmethod=marker
Class: stackdriver::plugin::elasticsearch::config
Configures Elasticsearch Agent Plugin for Stackdriver Agent
7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'manifests/plugin/elasticsearch/config.pp', line 7
class stackdriver::plugin::elasticsearch::config inherits stackdriver::plugin::elasticsearch {
file { $config:
ensure => file,
source => "puppet:///modules/stackdriver/${::kernel}/${config}",
owner => 'root',
group => 'root',
mode => '0444',
notify => Service[$::stackdriver::svc],
}
}
|