Saltstack Official FirewallD Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 satır
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