aboutsummaryrefslogtreecommitdiff
path: root/manifests/rules/munin.pp
blob: 0a026b0d966ab916d91e69d6e82f6726b4c3e2cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class shorewall::rules::munin {
    shorewall::params { 'MUNINPORT': value => $munin_port ? { '' => 4949, default => $munin_port } }
    shorewall::params { 'MUNINCOLLECTOR': value => $munin_collector ? { '' => '127.0.0.1', default => $munin_collector } }
    shorewall::rule{'net-me-munin-tcp':
        source          => 'net:$MUNINCOLLECTOR',
        destination     => '$FW',
        proto           => 'tcp',
        destinationport => '$MUNINPORT',
        order           => 240,
        action          => 'ACCEPT';
    }
}