summaryrefslogtreecommitdiff
path: root/manifests/rules/rsync.pp
blob: 144624db1964a3084e1a7aaf1ce1fc6f110f29b8 (plain)
1
2
3
4
5
6
7
8
9
10
class shorewall::rules::rsync {
    shorewall::rule{'me-net-rsync-tcp':
        source          => '$FW',
        destination     => 'net',
        proto           => 'tcp',
        destinationport => '873',
        order           => 240,
        action          => 'ACCEPT';
    }
}