From 38aa4b1c4af1ab041b774b65fc20a1e9f5f71b47 Mon Sep 17 00:00:00 2001 From: Dennis Hoppe Date: Wed, 30 Nov 2016 12:54:59 +0100 Subject: [PATCH] Add missing dependency for Beaker tests --- spec/spec_helper_acceptance.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index 89b86b9d..72fc7db4 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -18,6 +18,7 @@ # Install module and dependencies hosts.each do |host| copy_module_to(host, source: proj_root, module_name: 'fail2ban') + on host, puppet('module install puppet-extlib'), acceptable_exit_codes: [0, 1] on host, puppet('module install puppetlabs-stdlib'), acceptable_exit_codes: [0, 1] end end