Puppet Class: munin::client::params

Inherited by:
munin::client::base
Defined in:
manifests/client/params.pp

Overview

Set the parameters for the munin client



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'manifests/client/params.pp', line 2

class munin::client::params {
  $user = 'root'

  case $::osfamily {
    'OpenBSD': {
      $group = '0'
      $log_file = '/var/log/munin-node/munin-node.log'
    }
    'Debian': {
      $group = 'root'
      $log_file = '/var/log/munin/munin-node.log'
    }
    default: {
      $group = 'root'
      $log_file = '/var/log/munin-node/munin-node.log'
    }
  }
}