From 306c78333348173ed6ee2b031dd4862772b9f590 Mon Sep 17 00:00:00 2001 From: Rick Box Date: Wed, 10 May 2017 12:02:16 +0100 Subject: [PATCH] Fix for lookup and get_url occuring in different places We use an SSH bastion host which we do our deployment through. The deployment host doesn't have direct access to the same network as the host. As a result the venv local checksum lookup fails. I have described this here: https://bugs.launchpad.net/openstack-ansible/+bug/1689283 This is a simple fix for this problem, assuming everything is good it will need repeating in multiple places in the code base. Change-Id: I99b75316ba6e619725ccf6b43ba225567ea6f0ac --- tasks/glance_install.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tasks/glance_install.yml b/tasks/glance_install.yml index 1ebeba57..e82062fb 100644 --- a/tasks/glance_install.yml +++ b/tasks/glance_install.yml @@ -46,11 +46,18 @@ retries: 5 delay: 2 +- name: Retrieve checksum for venv download + uri: + url: "{{ glance_venv_download_url | replace('tgz', 'checksum') }}" + return_content: yes + register: glance_venv_checksum + when: glance_venv_download | bool + - name: Attempt venv download get_url: url: "{{ glance_venv_download_url }}" dest: "/var/cache/{{ glance_venv_download_url | basename }}" - checksum: "sha1:{{ lookup('url', glance_venv_download_url | replace('tgz', 'checksum')) }}" + checksum: "sha1:{{ glance_venv_checksum.content | trim }}" register: glance_get_venv when: glance_venv_download | bool