summaryrefslogtreecommitdiffstats
path: root/installer/roles/image_build
diff options
context:
space:
mode:
authorShane McDonald <me@shanemcd.com>2018-10-03 21:44:26 +0200
committerShane McDonald <me@shanemcd.com>2018-10-03 21:44:26 +0200
commitbfc74497b01629dd19aea57b62e5d3f3ded502c9 (patch)
tree24f0d534d47456379f18b9549219600a29fee3bb /installer/roles/image_build
parentMerge pull request #2332 from shanemcd/devel (diff)
downloadawx-bfc74497b01629dd19aea57b62e5d3f3ded502c9.tar.xz
awx-bfc74497b01629dd19aea57b62e5d3f3ded502c9.zip
Fix error in image_build role
I think I derped up and commited something in an old stash.
Diffstat (limited to 'installer/roles/image_build')
-rw-r--r--installer/roles/image_build/tasks/main.yml8
1 files changed, 1 insertions, 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