Puppet Class: nftables::rules::out::all

Defined in:
manifests/rules/out/all.pp

Overview

allow all outbound



2
3
4
5
6
7
8
# File 'manifests/rules/out/all.pp', line 2

class nftables::rules::out::all {
  nftables::rule {
    'default_out-all':
      order   => '90',
      content => 'accept',
  }
}