From 9163ca993f1ef1f36e209c4bc066b80584f155ec Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 13 Apr 2013 13:15:05 -0300 Subject: Renaming munin file --- manifests/defines/munin_node.pp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 manifests/defines/munin_node.pp (limited to 'manifests/defines/munin_node.pp') diff --git a/manifests/defines/munin_node.pp b/manifests/defines/munin_node.pp new file mode 100644 index 0000000..770d551 --- /dev/null +++ b/manifests/defines/munin_node.pp @@ -0,0 +1,21 @@ +# Define a munin node +define munin_node( + $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', '*') +) { + + case $allow { + '': { fail("Please set nodo::munin_node::allow in your config") } + } + + class { 'munin::client': + port => $port, + allow => $allow, + host => $host, + listen => $listen, + } + + munin::plugin { apt_all: ensure => present; } +} -- cgit v1.2.3