Puppet Class: stackdriver::plugin::redis::config

Inherits:
stackdriver::plugin::redis
Defined in:
manifests/plugin/redis/config.pp

Overview

vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 foldmethod=marker

Class: stackdriver::plugin::redis::config

Configures Redis Agent Plugin for Stackdriver Agent



7
8
9
10
11
12
13
14
15
16
17
18
# File 'manifests/plugin/redis/config.pp', line 7

class stackdriver::plugin::redis::config inherits stackdriver::plugin::redis {

  file { $config:
    ensure  => file,
    content => template("stackdriver/${::kernel}/${config}.erb"),
    owner   => 'root',
    group   => 'root',
    mode    => '0444',
    notify  => Service[$::stackdriver::svc],
  }

}