Puppet Class: nftables::services::openafs_client
  
  
    - Inherits:
- nftables
    - Defined in:
- 
      manifests/services/openafs_client.pp
    
 
  Summary
  Open inbound and outbound ports for an AFS client
Overview
  
  
    
      | 
2
3
4
5
6
7
8
9 | # File 'manifests/services/openafs_client.pp', line 2
class nftables::services::openafs_client inherits nftables {
  if $nftables::out_all {
    fail('All outgoing traffic is allowed, you might want to use only nftables::rules::afs3_callback')
  }
  include nftables::rules::afs3_callback
  include nftables::rules::out::openafs_client
} |