X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fmunin%2Fmanifests%2Finit.pp;h=91657e08a3abf67de15da4132d3a870b87cc3bd2;hb=2cdec8fac4eb9511d0e7d1a01523066cbd9d13f6;hp=8e4e7f2853e608ccb9ec111c4df378e5d88962a6;hpb=0ba93256399fbad7ed8fabfa39c24dd47169dde3;p=mirror%2Fdsa-puppet.git diff --git a/modules/munin/manifests/init.pp b/modules/munin/manifests/init.pp index 8e4e7f285..91657e08a 100644 --- a/modules/munin/manifests/init.pp +++ b/modules/munin/manifests/init.pp @@ -55,13 +55,13 @@ class munin { notify => Service['munin-node'], } - @ferm::rule { 'dsa-munin-v4': + 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; }', notarule => true, } - @ferm::rule { 'dsa-munin-v6': + ferm::rule { 'dsa-munin-v6': description => 'Allow munin from munin master', domain => 'ip6', rule => 'proto tcp mod state state (NEW) dport (munin) @subchain \'munin\' { saddr ($HOST_MUNIN_V6 $HOST_NAGIOS_V6) ACCEPT; }', @@ -73,15 +73,6 @@ class munin { munin_async => $::munin_async, } - #if $::munin_async and str2bool($::munin_async) == true { - # file { '/etc/ssh/userkeys/munin-async': - # source => 'puppet:///modules/munin/munin-async-authkeys', - # } - #} else { - # file { '/etc/ssh/userkeys/munin-async': - # ensure => 'absent', - # } - #} package { 'munin-async': ensure => installed }