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.
|
- # frozen_string_literal: true
-
- 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
|