From: Trevor Bramwell Date: Wed, 31 Oct 2018 22:08:55 +0000 (-0700) Subject: [builde servers] Update manifest-tool URL X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=ca2faade0b4b79fe38179f5be912fb31653984bd;p=releng.git [builde servers] Update manifest-tool URL The fact returned for 'ansible_architecture' is 'x86_64' for non-ARM servers. Hard coding this now in order to pull the correct URL of the manifest tool. When arm build servers are included in this list we'll set a fact for the architecture needed in the URL. Change-Id: I1c89e8a87cc7f2ae386973f3f1088f881ae5df71 Signed-off-by: Trevor Bramwell --- diff --git a/utils/build-server-ansible/main.yml b/utils/build-server-ansible/main.yml index 1df8a0400..a4d3b08cb 100644 --- a/utils/build-server-ansible/main.yml +++ b/utils/build-server-ansible/main.yml @@ -41,6 +41,6 @@ when: ansible_distribution == "Ubuntu" - name: Install manifest-tool get_url: - url: '{{ manifest_tool_url }}/{{ manifest_tool_version }}/manifest-tool-linux-{{ facter_architecture }}' + url: '{{ manifest_tool_url }}/{{ manifest_tool_version }}/manifest-tool-linux-amd64' dest: '{{ manifest_tool_bin_dir }}/manifest-tool' mode: '755'