nftables.confd 655 B

1234567891011121314151617181920
  1. # /etc/conf.d/nftables
  2. # Location in which nftables initscript will save set rules on
  3. # service shutdown
  4. NFTABLES_SAVE="/var/lib/nftables/rules-save"
  5. # Options to pass to nft on save
  6. SAVE_OPTIONS="-n"
  7. # Save state on stopping nftables
  8. SAVE_ON_STOP="yes"
  9. # If you need to log nftables messages as soon as nftables starts,
  10. # AND your logger does NOT depend on the network, then you may wish
  11. # to uncomment the next line.
  12. # If your logger depends on the network, and you uncomment this line
  13. # you will create an unresolvable circular dependency during startup.
  14. # After commenting or uncommenting this line, you must run 'rc-update -u'.
  15. #rc_use="logger"