summaryrefslogtreecommitdiff
path: root/manifests/register.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/register.pp')
-rw-r--r--manifests/register.pp40
1 files changed, 22 insertions, 18 deletions
diff --git a/manifests/register.pp b/manifests/register.pp
index 05d8f2a..21f1d35 100644
--- a/manifests/register.pp
+++ b/manifests/register.pp
@@ -1,30 +1,34 @@
-define munin::register(
+define munin::register (
$host = 'absent',
- $port = 'absent'
+ $port = 'absent',
+ $description = 'absent',
+ $config = []
)
{
+ $fhost = $name
+ $client_type = 'client'
+
$munin_port_real = $port ? {
- 'absent' => $munin_port ? {
- '' => 4949,
- default => $munin_port
- },
- default => $port
- }
+ 'absent' => $munin_port ? {
+ '' => 4949,
+ default => $munin_port
+ },
+ default => $port
+ }
$munin_host_real = $host ? {
- 'absent' => $munin_host ? {
- '' => $fqdn,
- 'fqdn' => $fqdn,
- default => $munin_host
- },
- default => $host
+ 'absent' => $munin_host ? {
+ '' => $fqdn,
+ 'fqdn' => $fqdn,
+ default => $munin_host
+ },
+ default => $host
}
- @@file { "/var/lib/puppet/modules/munin/nodes/${name}_${munin_port_real}":
+ @@file { "munin_client_${fhost}_${munin_port_real}":
ensure => present,
- content => template("munin/defaultclient.erb"),
+ path => "/var/lib/puppet/modules/munin/nodes/${fhost}_${munin_port_real}",
+ content => template("munin/client.erb"),
tag => 'munin',
}
}
-
-