From b1c48e93641ba9f6bbcb863c3c48e1fb9e55a39b Mon Sep 17 00:00:00 2001 From: Juan Antonio Osorio Robles Date: Mon, 4 Dec 2017 07:56:19 +0200 Subject: [PATCH] WORKAROUND: Use include_tasks instead of calling role It was referencing the old playbook's role name. And for some reason, the legacy lint job installs the job in a directory called "workspace", which is not ideal since it's what it uses as the role name. So instead of using the actual role name, we call the task directly. Note that it also fixes a trailing whitespace from the meta/mail.yml file Change-Id: I89a42b72be08a1171e2c1dc7b7c0a14caad8d634 --- meta/main.yml | 2 +- tests/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/main.yml b/meta/main.yml index 07daafc..dae2874 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -12,7 +12,7 @@ galaxy_info: versions: - 7 - galaxy_tags: + galaxy_tags: - 'tripleo' - 'openstack' - 'ipsec' diff --git a/tests/test.yml b/tests/test.yml index a5f01f1..3fe9239 100644 --- a/tests/test.yml +++ b/tests/test.yml @@ -1,5 +1,5 @@ --- - hosts: localhost remote_user: root - roles: - - overcloud-ipsec-setup \ No newline at end of file + tasks: + - include_tasks: ../tasks/main.yml