From 9cdfcfdc397410dc1fe48641ace5fcf47e123085 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Wed, 11 Jul 2018 10:43:41 +0200 Subject: add official ubuntu support --- spec/classes/ferm_spec.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'spec/classes') diff --git a/spec/classes/ferm_spec.rb b/spec/classes/ferm_spec.rb index e039c14..dbf9cbd 100644 --- a/spec/classes/ferm_spec.rb +++ b/spec/classes/ferm_spec.rb @@ -31,14 +31,21 @@ describe 'ferm' do it { is_expected.to compile.with_all_deps } it { is_expected.to contain_service('ferm') } + if facts[:os]['name'] == "Ubuntu" + it { is_expected.to contain_file_line('enable_ferm') } + end end context 'with managed configfile' do let :params do { manage_configfile: true } end + if facts[:os]['name'] == 'Ubuntu' + it { is_expected.to contain_concat('/etc/ferm/ferm.conf') } + else + it { is_expected.to contain_concat('/etc/ferm.conf') } + end it { is_expected.to compile.with_all_deps } - it { is_expected.to contain_concat('/etc/ferm.conf') } it { is_expected.to contain_concat__fragment('ferm_header.conf') } it { is_expected.to contain_concat__fragment('ferm.conf') } end -- cgit v1.2.3