summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorTrevor Bramwell <tbramwell@linuxfoundation.org>2018-10-31 15:08:55 -0700
committerTrevor Bramwell <tbramwell@linuxfoundation.org>2018-10-31 15:08:55 -0700
commitca2faade0b4b79fe38179f5be912fb31653984bd (patch)
tree3b5ddb1894cf0042840e2e3bd4bfb6a2b2602a95 /utils
parent4dc709177cdd7a78aa826c6764ea30a65a1c5b78 (diff)
[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 <tbramwell@linuxfoundation.org>
Diffstat (limited to 'utils')
-rw-r--r--utils/build-server-ansible/main.yml2
1 files changed, 1 insertions, 1 deletions
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'