summaryrefslogtreecommitdiff
path: root/puppet/modules/shorewall/manifests/rules/out/postgres.pp
blob: a62d75d72b33dc41c367a864e0ce144ba558736f (plain)
1
2
3
4
5
6
7
8
9
10
11
class shorewall::rules::out::postgres {
    shorewall::rule {
        'me-net-tcp_postgres':
            source          =>  '$FW',
            destination     =>  'net',
            proto           =>  'tcp',
            destinationport =>  '5432',
            order           =>  240,
            action          => 'ACCEPT';
    }
}