Note that exim contains tracker-specific configuration
[mirror/dsa-puppet.git] / modules / munin / manifests / ipv6check.pp
1 # ipv5 check
2 # @param ensure check enabled/disabled
3 define munin::ipv6check(
4   Enum['present','absent'] $ensure = 'present',
5 ) {
6   include munin
7
8   file { "/etc/munin/plugins/${name}":
9     ensure  => $ensure,
10     content => @(EOF),
11                 #!/bin/bash
12                 # This file is under puppet control
13                 . /usr/share/munin/plugins/ip_
14                 | EOF
15     mode    => '0555',
16     require => Package['munin-node'],
17     notify  => Service['munin-node'],
18   }
19 }