summaryrefslogtreecommitdiff
path: root/manifests/rules/out/postgres.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/rules/out/postgres.pp')
-rw-r--r--manifests/rules/out/postgres.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/rules/out/postgres.pp b/manifests/rules/out/postgres.pp
new file mode 100644
index 00000000..a62d75d7
--- /dev/null
+++ b/manifests/rules/out/postgres.pp
@@ -0,0 +1,11 @@
+class shorewall::rules::out::postgres {
+ shorewall::rule {
+ 'me-net-tcp_postgres':
+ source => '$FW',
+ destination => 'net',
+ proto => 'tcp',
+ destinationport => '5432',
+ order => 240,
+ action => 'ACCEPT';
+ }
+}