From bfc74497b01629dd19aea57b62e5d3f3ded502c9 Mon Sep 17 00:00:00 2001 From: Shane McDonald Date: Wed, 3 Oct 2018 14:44:26 -0500 Subject: [PATCH] Fix error in image_build role I think I derped up and commited something in an old stash. --- installer/roles/image_build/tasks/main.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/installer/roles/image_build/tasks/main.yml b/installer/roles/image_build/tasks/main.yml index 93fd436b6a..75ca648883 100644 --- a/installer/roles/image_build/tasks/main.yml +++ b/installer/roles/image_build/tasks/main.yml @@ -1,13 +1,7 @@ --- -- name: Get Version from checkout if not provided - shell: "{{ lookup('file', playbook_dir + '/../VERSION') }}" - delegate_to: localhost - register: awx_version_command - when: awx_version is not defined - - name: Set global version if not provided set_fact: - awx_version: "{{ awx_version_command.stdout }}" + awx_version: "{{ lookup('file', playbook_dir + '/../VERSION') }}" when: awx_version is not defined - name: Verify awx-logos directory exists for official install