Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
immerda
Puppet Modules
firewall
Commits
a0f0225c
Commit
a0f0225c
authored
Feb 07, 2021
by
mh
Browse files
new rules
parent
aba5030d
Changes
3
Hide whitespace changes
Inline
Side-by-side
manifests/rules/http.pp
0 → 100644
View file @
a0f0225c
# manage incoming http
class
firewall::rules::http
{
include
firewall
if
$firewall::use_nftables
{
include
nftables::rules::http
}
else
{
include
shorewall::rules::http
}
}
manifests/rules/https.pp
0 → 100644
View file @
a0f0225c
# manage incoming https
class
firewall::rules::https
{
include
firewall
if
$firewall::use_nftables
{
include
nftables::rules::https
}
else
{
include
shorewall::rules::https
}
}
manifests/rules/out/munin.pp
0 → 100644
View file @
a0f0225c
# outgoing rules for munin
class
firewall::rules::out::munin
{
include
firewall
if
$firewall::use_nftables
{
nftables::simplerule
{
'munin-out'
:
chain
=>
'default_out'
,
dport
=>
'4949'
,
}
}
else
{
include
shorewall::rules::out::munin
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment