summaryrefslogtreecommitdiff
path: root/manifests/router/rsync.pp
blob: 9e36f85a212bcecd2390907f177571af6dac9b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class firewall::router::rsync(
   $destination,
   $port_orig     = '873',
   $port_dest     = '',
   $zone          = 'loc',
   $originaldest  = $ipaddress
   $implementation = lookup('firewall::implementation', undef, undef, 'shorewall'),
) {
  class { "firewall::implementations::${implementation}::router::rsync":
    destination  => $destination,
    port_orig    => $port_orig,
    port_dest    => $port_dest,
    zone         => $zone,
    order        => $order,
    originaldest => $originaldest,
  }
}