3 # Required by serverspec
 
   6 describe package("nftables") do
 
   7   it { should be_installed }
 
  10 describe service("nftables") do
 
  11   it { should be_enabled }
 
  12   it { should be_running }
 
  15 describe file("/etc/nftables.conf") do
 
  17   its(:content) { should match(/echo-request.*accept/) }
 
  18   its(:content) { should match(/http.*accept/) }
 
  19   its(:content) { should match(/https.*accept/) }