From: Josh Cooper Date: Wed, 18 Jul 2018 02:54:45 +0000 (-0700) Subject: Install module on all hosts, not just those with default role X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=f8ee482b7e2ecadf6b99e26a1e8f4758619eebee;p=puppet-sshkeys_core.git Install module on all hosts, not just those with default role * Install module on all hosts, not just those with the default role * Remove dead comment --- diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index ac6b27e..cb4ccb2 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -4,7 +4,6 @@ require 'beaker/puppet_install_helper' def beaker_opts { debug: true, trace: true, expect_failures: true, acceptable_exit_codes: (0...256) } - # { expect_failures: true, acceptable_exit_codes: (0...256) } end def posix_agents @@ -19,7 +18,7 @@ RSpec.configure do |c| c.before :suite do unless ENV['BEAKER_provision'] == 'no' run_puppet_install_helper - install_module_on(hosts_as('default')) + install_module_on(hosts) install_module_dependencies_on(hosts) end end