From 76ec4642be1a8bc64380c077a5890c4d0f4243e0 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 11 Sep 2015 21:16:42 -0300 Subject: Autoload definitions --- manifests/subsystem/monitor/munin.pp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 manifests/subsystem/monitor/munin.pp (limited to 'manifests/subsystem/monitor') diff --git a/manifests/subsystem/monitor/munin.pp b/manifests/subsystem/monitor/munin.pp new file mode 100644 index 0000000..aa70c2f --- /dev/null +++ b/manifests/subsystem/monitor/munin.pp @@ -0,0 +1,27 @@ +# Define a munin node +define nodo::sybsystem::monitor::munin( + $port = hiera('nodo::munin_node::port', '4949'), + $allow = hiera('nodo::munin_node::allow', ''), + $host = hiera('nodo::munin_node::host', $::fqdn), + $listen = hiera('nodo::munin_node::listen', '*'), + $config = hiera('nodo::munin_node::config', [ 'use_node_name yes', 'load.load.warning 5', 'load.load.critical 10' ]) +) { + + case $allow { + '': { fail("Please set nodo::munin_node::allow in your config") } + } + + package { "munin-plugins-extra": + ensure => "present", + } + + class { 'munin::client': + port => $port, + allow => $allow, + host => $host, + listen => $listen, + config => $config, + } + + munin::plugin { apt_all: ensure => present; } +} -- cgit v1.2.3