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, 20 insertions, 20 deletions
diff --git a/manifests/register.pp b/manifests/register.pp
index 254eaaf..14019d0 100644
--- a/manifests/register.pp
+++ b/manifests/register.pp
@@ -5,27 +5,27 @@ define munin::register (
$config = []
)
{
- $fhost = $name
- $client_type = 'client'
+ $fhost = $name
+ $client_type = 'client'
- $munin_port_real = $port ? {
- 'absent' => hiera('munin_port','4949'),
- default => $port
- }
+ $munin_port_real = $port ? {
+ 'absent' => hiera('munin_port','4949'),
+ default => $port
+ }
- $hiera_munin_host = hiera('munin_host','')
- $munin_host_real = $host ? {
- 'absent' => $hiera_munin_host ? {
- '' => $::fqdn,
- 'fqdn' => $::fqdn,
- default => $hiera_munin_host
- },
- default => $host
- }
+ $hiera_munin_host = hiera('munin_host','')
+ $munin_host_real = $host ? {
+ 'absent' => $hiera_munin_host ? {
+ '' => $::fqdn,
+ 'fqdn' => $::fqdn,
+ default => $hiera_munin_host
+ },
+ default => $host
+ }
- @@concat::fragment{ "munin_client_${fhost}_${munin_port_real}":
- target => '/etc/munin/munin.conf',
- content => template("munin/client.erb"),
- tag => 'munin',
- }
+ @@concat::fragment{ "munin_client_${fhost}_${munin_port_real}":
+ target => '/etc/munin/munin.conf',
+ content => template("munin/client.erb"),
+ tag => 'munin',
+ }
}