Puppet Class: remediate_install::firewall::linux::post
- Defined in:
- manifests/firewall/linux/post.pp
Summary
Firewall post rulesOverview
Rules to be added at the end of the firewall
7 8 9 10 11 12 13 14 |
# File 'manifests/firewall/linux/post.pp', line 7
class remediate_install::firewall::linux::post {
firewall { '999 drop all':
proto => 'all',
action => 'drop',
before => undef,
}
}
|