Merge "Support FD.io Multiple Loss Ratio search (MLRsearch)"
[yardstick.git] / ansible / roles / download_civetweb / tasks / main.yml
1 # Copyright (c) 2017 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 ---
15 - name: fetch civetweb
16   get_url:
17     url: "{{ civetweb_url }}"
18     dest: "{{ clone_dest }}/"
19     validate_certs: False
20     checksum: "{{ civetweb_sha256s }}"
21   register: package_result
22   until: package_result is succeeded
23   retries: 10
24   delay: 5
25
26 - name: unarchive civetweb
27   unarchive:
28     src: "{{ clone_dest }}/{{ civetweb_file }}"
29     dest: "{{ clone_dest }}/"
30     copy: no
31
32 - file:
33     path: "{{ civetweb_dest }}"
34     state: absent
35
36 - name: "move civetweb to {{ civetweb_dest }} path"
37   shell: "mv {{ clone_dest }}/civetweb-master {{ civetweb_dest }}"
38   args:
39     executable: /bin/bash
40
41 - name: cleanup zip file to save space
42   file:
43       path: "{{ clone_dest }}/{{ civetweb_file }}"
44       state: absent