diff options
author | duritong <duritong@immerda.ch> | 2009-10-02 13:18:38 +0200 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2009-12-07 11:34:20 -0500 |
commit | 28f6a27507139db939a0204e36f0f27569a2f117 (patch) | |
tree | 1bb813fcf0e5877253c1b7df7fac675b8d7e88c7 /manifests/rules/smtps.pp | |
parent | 3143f371c7e912bf0ce228a22688fc8e6485f3e2 (diff) | |
download | puppet-shorewall-28f6a27507139db939a0204e36f0f27569a2f117.tar.gz puppet-shorewall-28f6a27507139db939a0204e36f0f27569a2f117.tar.bz2 |
add smtps rules
Diffstat (limited to 'manifests/rules/smtps.pp')
-rw-r--r-- | manifests/rules/smtps.pp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/rules/smtps.pp b/manifests/rules/smtps.pp new file mode 100644 index 0000000..48183f7 --- /dev/null +++ b/manifests/rules/smtps.pp @@ -0,0 +1,10 @@ +class shorewall::rules::smtps { + shorewall::rule {'net-me-smtps-tcp': + source => 'net', + destination => '$FW', + proto => 'tcp', + destinationport => '465', + order => 240, + action => 'ACCEPT'; + } +} |