diff options
author | varac <varacanero@zeromail.org> | 2016-06-14 21:12:38 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2016-06-14 21:12:38 +0200 |
commit | 9be18eb2681eb5c9047782eaf4e0c6b8c03ce6e6 (patch) | |
tree | 580a084d2bd33df62542e003092e27e068245356 /puppet/modules/shorewall/manifests/rules/openvpn.pp | |
parent | ed9efc368356bf7ae2330f4f28bc34cc04009b17 (diff) |
git subrepo clone --force https://leap.se/git/puppet_shorewall puppet/modules/shorewall
subrepo:
subdir: "puppet/modules/shorewall"
merged: "06e89ed"
upstream:
origin: "https://leap.se/git/puppet_shorewall"
branch: "master"
commit: "06e89ed"
git-subrepo:
version: "0.3.0"
origin: "https://github.com/ingydotnet/git-subrepo.git"
commit: "cb2995b"
Diffstat (limited to 'puppet/modules/shorewall/manifests/rules/openvpn.pp')
-rw-r--r-- | puppet/modules/shorewall/manifests/rules/openvpn.pp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/puppet/modules/shorewall/manifests/rules/openvpn.pp b/puppet/modules/shorewall/manifests/rules/openvpn.pp new file mode 100644 index 00000000..55a20d2d --- /dev/null +++ b/puppet/modules/shorewall/manifests/rules/openvpn.pp @@ -0,0 +1,18 @@ +class shorewall::rules::openvpn { + shorewall::rule { 'net-me-openvpn-udp': + source => 'net', + destination => '$FW', + proto => 'udp', + destinationport => '1194', + order => 240, + action => 'ACCEPT'; + } + shorewall::rule { 'me-net-openvpn-udp': + source => '$FW', + destination => 'net', + proto => 'udp', + destinationport => '1194', + order => 240, + action => 'ACCEPT'; + } +} |