Commit db630ecc authored by guest715's avatar guest715
Browse files

Removed hypens from firewall resources within client.pp to stop iptables rules...

Removed hypens from firewall resources within client.pp to stop iptables rules being repeatedly added by subequent Puppet runs
parent 500296d4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -58,14 +58,14 @@ define freeradius::client (
  if ($firewall and $ensure == 'present') {
    if $port {
      if $ip {
        firewall { "100-${shortname}-${port}-v4":
        firewall { "100 ${shortname} ${port} v4":
          proto  => 'udp',
          dport  => $port,
          action => 'accept',
          source => $ip,
        }
      } elsif $ip6 {
        firewall { "100-${shortname}-${port}-v6":
        firewall { "100 ${shortname} ${port} v6":
          proto    => 'udp',
          dport    => $port,
          action   => 'accept',