Puppet Class: munin::client::base
- Inherits:
- munin::client::params
- Inherited by:
-
munin::client::debian
munin::client::gentoo
munin::client::openbsd
- Defined in:
- manifests/client/base.pp
Overview
Install a basic munin client
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'manifests/client/base.pp', line 2
class munin::client::base inherits munin::client::params {
package { 'munin-node':
ensure => installed
}
service { 'munin-node':
ensure => running,
enable => true,
hasstatus => true,
hasrestart => true,
require => Package[munin-node],
}
file {'/etc/munin':
ensure => directory,
mode => '0755',
owner => root,
group => 0,
}
file {'/etc/munin/munin-node.conf':
content => template("${module_name}/munin-node.conf.erb"),
# this has to be installed before the package, so the postinst can
# boot the munin-node without failure!
before => Package['munin-node'],
notify => Service['munin-node'],
mode => '0644',
owner => root,
group => 0,
}
$host = $munin::client::host ? {
'*' => $::fqdn,
default => $munin::client::host
}
munin::register { $::fqdn:
host => $host,
port => $munin::client::port,
use_ssh => $munin::client::use_ssh,
description => $munin::client::description,
group => $munin::client::munin_group,
config => [ 'use_node_name yes', 'load.load.warning 5', 'load.load.critical 10'],
export_tag => $munin::client::export_tag,
}
include munin::plugins::base
}
|