aboutsummaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorThore Bödecker <me@foxxx0.de>2020-06-25 17:44:26 +0200
committerThore Bödecker <me@foxxx0.de>2020-06-25 18:40:52 +0200
commit945faf68871dfdb9f9521cdadcdecfef65634d4b (patch)
tree14025202a7da81c7e29f18b02d770dd7e7346a7d /spec
parent840e99f57957059362b387ded299e8dddb6b475c (diff)
downloadpuppet-ferm-945faf68871dfdb9f9521cdadcdecfef65634d4b.tar.gz
puppet-ferm-945faf68871dfdb9f9521cdadcdecfef65634d4b.tar.bz2
use verbose multiport syntax for better compat
The dports/sports shortcut is only supported starting with ferm v2.5 which was released very recently. In order to support a wider range of distributions and ferm versions, this commits switches to the more verbose version of the multiport features.
Diffstat (limited to 'spec')
-rw-r--r--spec/defines/rule_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/defines/rule_spec.rb b/spec/defines/rule_spec.rb
index f1887b6..b2a2abd 100644
--- a/spec/defines/rule_spec.rb
+++ b/spec/defines/rule_spec.rb
@@ -127,7 +127,7 @@ describe 'ferm::rule', type: :define do
end
it { is_expected.to compile.with_all_deps }
- it { is_expected.to contain_concat__fragment('INPUT-filter-consul').with_content("mod comment comment 'filter-consul' proto (tcp udp) dports (8301 8302) saddr @ipfilter((127.0.0.1)) ACCEPT;\n") }
+ it { is_expected.to contain_concat__fragment('INPUT-filter-consul').with_content("mod comment comment 'filter-consul' proto (tcp udp) mod multiport destination-ports (8301 8302) saddr @ipfilter((127.0.0.1)) ACCEPT;\n") }
it { is_expected.to contain_concat__fragment('filter-INPUT-config-include') }
it { is_expected.to contain_concat__fragment('filter-FORWARD-config-include') }
it { is_expected.to contain_concat__fragment('filter-OUTPUT-config-include') }