We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cf0f70 commit 319fdb7Copy full SHA for 319fdb7
1 file changed
spec/spec_helper_acceptance_local.rb
@@ -31,7 +31,8 @@ def print_parsing_errors
31
# IPv6 is not enabled by default in the new travis-ci Trusty environment (see https://github.com/travis-ci/travis-ci/issues/8891 )
32
c.filter_run_excluding ipv6: true if ENV['CI'] == 'true'
33
c.before :suite do
34
- LitmusHelper.instance.run_shell('puppet module install puppet/epel') if %r{redhat|oracle}.match?(os[:family])
+ # Pin to epel 5.x which is known to work - newer versions have file() function issues
35
+ LitmusHelper.instance.run_shell('puppet module install puppet/epel --version 5.0.0') if %r{redhat|oracle}.match?(os[:family])
36
37
LitmusHelper.instance.apply_manifest(File.read(File.join(__dir__, 'setup_acceptance_node.pp')))
38
end
0 commit comments