aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Cooper <josh@puppet.com>2018-07-18 11:58:17 -0700
committerGitHub <noreply@github.com>2018-07-18 11:58:17 -0700
commit4a11c9015dda427d4a376168f26f1c720967b711 (patch)
tree6b4c191972fa31c8d913d8cb1dfb5a111d5f2009
parentc9e69ecf2781ebde1cf47a6ba1506d06a4b1d18e (diff)
parentf8ee482b7e2ecadf6b99e26a1e8f4758619eebee (diff)
downloadpuppet-sshkeys_core-4a11c9015dda427d4a376168f26f1c720967b711.tar.gz
puppet-sshkeys_core-4a11c9015dda427d4a376168f26f1c720967b711.tar.bz2
Merge pull request #4 from puppetlabs/install-module-on
Install module on all hosts, not just those with default role
-rw-r--r--spec/spec_helper_acceptance.rb3
1 files changed, 1 insertions, 2 deletions
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