From a6349cb41dc572bb7542459965142a8851dbb97f Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Tue, 7 Aug 2018 10:18:31 -0400 Subject: [PATCH] Move the roles dir to content/ansible_runner Change the directory to seed roles from content/ansible_tmp to content/ansible_runner --- lib/vmdb/plugins.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vmdb/plugins.rb b/lib/vmdb/plugins.rb index ca79c98fb3c..b1f11ee58ef 100644 --- a/lib/vmdb/plugins.rb +++ b/lib/vmdb/plugins.rb @@ -49,7 +49,7 @@ def ansible_content def ansible_runner_content @ansible_runner_content ||= begin map do |engine| - content_dir = engine.root.join("content", "ansible_tmp") + content_dir = engine.root.join("content", "ansible_runner") next unless File.exist?(content_dir.join("requirements.yml")) [engine, content_dir]