diff options
Diffstat (limited to 'manifests/rules/https.pp')
-rw-r--r-- | manifests/rules/https.pp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/rules/https.pp b/manifests/rules/https.pp new file mode 100644 index 0000000..cc49d10 --- /dev/null +++ b/manifests/rules/https.pp @@ -0,0 +1,10 @@ +class shorewall::rules::https { + shorewall::rule { 'net-me-https-tcp': + source => 'net', + destination => '$FW', + proto => 'tcp', + destinationport => '443', + order => 240, + action => 'ACCEPT'; + } +} |