15a48462f0
See https://github.com/saltstack-formulas/firewalld-formula/pull/21#pullrequestreview-146958098
19 lines
357 B
Ruby
19 lines
357 B
Ruby
describe package('firewalld') do
|
|
it { should be_installed }
|
|
end
|
|
|
|
describe service('firewalld') do
|
|
it { should be_enabled }
|
|
it { should be_running }
|
|
end
|
|
|
|
describe service('iptables') do
|
|
it { should_not be_enabled }
|
|
it { should_not be_running }
|
|
end
|
|
|
|
describe service('ip6tables') do
|
|
it { should_not be_enabled }
|
|
it { should_not be_running }
|
|
end
|