1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
require 'voxpupuli/acceptance/spec_helper_acceptance'
ENV['BEAKER_setfile'] ||= 'centos7-64{hostname=centos7-64.example.com}'
configure_beaker(modules: :fixtures) do |host|
if fact_on(host, 'os.family') == 'RedHat'
unless fact_on(host, 'os.name') == 'Fedora'
# don't delete downloaded rpm for use with BEAKER_provision=no +
# BEAKER_destroy=no
on host, 'sed -i "s/keepcache=.*/keepcache=1/" /etc/yum.conf'
end
# refresh check if cache needs refresh on next yum command
on host, 'yum clean expire-cache'
end
end
Dir["./spec/support/acceptance/**/*.rb"].sort.each { |f| require f }
|