Puppet Class: r_profile::fw::post
- Defined in:
- manifests/fw/post.pp
Overview
R_profile::Fw::Post
‘post’ rules for iptables
4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/fw/post.pp', line 4
class r_profile::fw::post {
Firewall {
before => undef,
}
firewall { '999 drop all':
proto => 'all',
action => 'drop',
before => undef,
}
}
|