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