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