fix munin 1
[mirror/dsa-puppet.git] / modules / munin / manifests / init.pp
index 3f7f4ae..b4a5398 100644 (file)
@@ -33,13 +33,28 @@ class munin {
                require => Package['munin-node'],
        }
 
-       file { [ '/etc/munin/plugins/df', '/etc/munin/plugins/df_abs', '/etc/munin/plugins/df_inode' ]:
+       file { '/etc/munin/plugins/df':
+               ensure  => link,
+               target  => '/usr/share/munin/plugins/df',
+               require => Package['munin-node'],
+               notify  => Service['munin-node'],
+       }
+
+       file { '/etc/munin/plugins/df_abs':
+               ensure  => file,
                source => 'puppet:///modules/munin/df-wrap',
                mode    => '0555',
                require => Package['munin-node'],
                notify  => Service['munin-node'],
        }
 
+       file { '/etc/munin/plugins/df_inode':
+               ensure  => link,
+               target  => '/usr/share/munin/plugins/df_inode',
+               require => Package['munin-node'],
+               notify  => Service['munin-node'],
+       }
+
        @ferm::rule { 'dsa-munin-v4':
                description     => 'Allow munin from munin master',
                rule            => 'proto tcp mod state state (NEW) dport (munin) @subchain \'munin\' { saddr ($HOST_MUNIN_V4 $HOST_NAGIOS_V4) ACCEPT; }',
@@ -53,11 +68,9 @@ class munin {
                notarule        => true,
        }
 
-       @@munin::master-per-node {
-               $::fqdn:
+       @@munin::master_per_node { $::fqdn:
                        ipaddress   => $::ipaddress,
                        munin_async => $::munin_async,
-                       ;
        }
 
        #if $::munin_async and str2bool($::munin_async) == true {