21 lines
388 B
Ruby
Raw Normal View History

# frozen_string_literal: true
describe package('firewalld') do
it { should be_installed }
end
2017-03-10 11:30:39 -07:00
describe service('firewalld') do
it { should be_enabled }
2017-03-10 11:30:39 -07:00
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