From d1d1ec2327e6a76ad2e01403e31d9e387f59ebb7 Mon Sep 17 00:00:00 2001 From: Travis Fields Date: Wed, 10 Sep 2014 11:30:52 -0700 Subject: [PATCH] Remove puppet_module_install in favor of copy_module_to --- spec/spec_helper_acceptance.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index e98a9fe..37ad8ee 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -34,6 +34,8 @@ RSpec.configure do |c| # Configure all nodes in nodeset c.before :suite do # Install module - puppet_module_install(:source => proj_root, :module_name => "java") + hosts.each do |host| + copy_module_to(host, :source => proj_root, :module_name => "java") + end end end