summaryrefslogtreecommitdiff
path: root/manifests/register.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/register.pp')
-rw-r--r--manifests/register.pp7
1 files changed, 4 insertions, 3 deletions
diff --git a/manifests/register.pp b/manifests/register.pp
index 6c154e5..309c322 100644
--- a/manifests/register.pp
+++ b/manifests/register.pp
@@ -3,15 +3,16 @@ define munin::register (
$port = '4949',
$use_ssh = false,
$description = 'absent',
- $config = []
+ $config = [],
+ $export_tag = 'munin'
)
{
$fhost = $name
$client_type = 'client'
@@concat::fragment{ "munin_client_${fhost}_${port}":
- target => '/etc/munin/munin.conf',
+ target => '/etc/munin/munin.conf',
content => template("munin/client.erb"),
- tag => 'munin',
+ tag => $export_tag,
}
}