From 383a03984853110a32793b2af1b494fcbcec02e9 Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Thu, 2 Aug 2018 13:12:34 -0400 Subject: [PATCH] Move content_tmp/ansible to content/ansible_tmp --- lib/tasks/evm_ansible_runner.rake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/tasks/evm_ansible_runner.rake b/lib/tasks/evm_ansible_runner.rake index f6854e42d48..6dd67c6c855 100644 --- a/lib/tasks/evm_ansible_runner.rake +++ b/lib/tasks/evm_ansible_runner.rake @@ -6,15 +6,15 @@ namespace :evm do desc "Seed galaxy roles for provider playbooks" task :seed do plugins_with_req_yml = Vmdb::Plugins.select do |plugin| - req_yml_path = plugin.root.join('content_tmp', 'ansible', 'requirements.yml') + req_yml_path = plugin.root.join('content', 'ansible_tmp', 'requirements.yml') File.file?(req_yml_path) end plugins_with_req_yml.each do |plugin| puts "Seeding roles for #{plugin.name}..." - roles_path = plugin.root.join('content_tmp', 'ansible', 'roles') - role_file = plugin.root.join('content_tmp', 'ansible', 'requirements.yml') + roles_path = plugin.root.join('content', 'ansible_tmp', 'roles') + role_file = plugin.root.join('content', 'ansible_tmp', 'requirements.yml') params = ["install", :roles_path= => roles_path, :role_file= => role_file]