Saltstack Official FirewallD Formula
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

19 lines
357B

  1. describe package('firewalld') do
  2. it { should be_installed }
  3. end
  4. describe service('firewalld') do
  5. it { should be_enabled }
  6. it { should be_running }
  7. end
  8. describe service('iptables') do
  9. it { should_not be_enabled }
  10. it { should_not be_running }
  11. end
  12. describe service('ip6tables') do
  13. it { should_not be_enabled }
  14. it { should_not be_running }
  15. end