]> gitweb.fluxo.info Git - puppet-sshkeys_core.git/commitdiff
Install module on all hosts, not just those with default role
authorJosh Cooper <josh@puppet.com>
Wed, 18 Jul 2018 02:54:45 +0000 (19:54 -0700)
committerJosh Cooper <josh@puppet.com>
Wed, 18 Jul 2018 02:54:45 +0000 (19:54 -0700)
 * Install module on all hosts, not just those with the default role
 * Remove dead comment

spec/spec_helper_acceptance.rb

index ac6b27ed8594181769a62e7b48ee82a58194fe2d..cb4ccb25da62b0b6e337038bcbe9f8c90c16820f 100644 (file)
@@ -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