aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/download_prox
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/roles/download_prox')
-rw-r--r--ansible/roles/download_prox/defaults/main.yml12
-rw-r--r--ansible/roles/download_prox/tasks/main.yml36
2 files changed, 48 insertions, 0 deletions
diff --git a/ansible/roles/download_prox/defaults/main.yml b/ansible/roles/download_prox/defaults/main.yml
new file mode 100644
index 000000000..797db3125
--- /dev/null
+++ b/ansible/roles/download_prox/defaults/main.yml
@@ -0,0 +1,12 @@
+---
+prox_version: v037
+prox_suffix:
+ v035: "zip"
+ v037: "tar.gz"
+prox_url: "https://01.org/sites/default/files/downloads/intelr-data-plane-performance-demonstrators/dppd-prox-{{ prox_version }}.{{ prox_suffix[prox_version] }}"
+prox_file: "{{ prox_url|basename }}"
+prox_unarchive: "{{ prox_file|regex_replace('[.]zip$', '')|regex_replace('-prox-', '-PROX-') }}"
+prox_dest: "{{ clone_dest }}/"
+prox_sha256s:
+ v035: "sha256:f5d3f7c3855ca198d2babbc7045ed4373f0ddc13dc243fedbe23ed395ce65cc9"
+ v037: "sha256:a12d021fbc0f5ae55ab55a2bbf8f3b260705ce3e61866288f023ccabca010bca"
diff --git a/ansible/roles/download_prox/tasks/main.yml b/ansible/roles/download_prox/tasks/main.yml
new file mode 100644
index 000000000..0614c74fa
--- /dev/null
+++ b/ansible/roles/download_prox/tasks/main.yml
@@ -0,0 +1,36 @@
+# Copyright (c) 2017 Intel Corporation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+---
+- debug:
+ var: prox_version
+ verbosity: 2
+
+- name: fetch prox
+ get_url:
+ url: "{{ prox_url }}"
+ dest: "{{ prox_dest }}"
+ validate_certs: False
+ checksum: "{{ prox_sha256s[prox_version] }}"
+
+- unarchive:
+ src: "{{ clone_dest }}/{{ prox_file }}"
+ dest: "{{ clone_dest }}/"
+ copy: no
+
+- debug:
+ var: prox_unarchive
+ verbosity: 2
+
+- set_fact:
+ prox_path: "{{ clone_dest }}/{{ prox_unarchive }}" \ No newline at end of file