diff options
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 50b0502..8c44f99 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -182,12 +182,12 @@ class nodo::vserver inherits nodo { } # Apply munin configuration for this node - Munin_node <<| tag == $hostname |>> + Munin_node <<| title == $hostname |>> # We include munin configuration if it's not defined by # and exported resource. if !defined(munin::client) { - include munin::client + munin_node { "$hostname": } } # Define a vserver instance @@ -224,8 +224,7 @@ class nodo::vserver inherits nodo { # Create a munin virtual resource to be realized in the node @@munin_node { "$name": - id => $id, - tag => $name, + port => "49$id", } # Sound support |