summaryrefslogtreecommitdiff
path: root/test/integration/targets/prepare_http_tests
diff options
context:
space:
mode:
authorJordan Borean <jborean93@gmail.com>2019-03-04 13:18:45 +1000
committerGitHub <noreply@github.com>2019-03-04 13:18:45 +1000
commit00f0a015feb9b306fa585f14142de66c2a463036 (patch)
tree016979449ac754e4facc2436d93e752cfaf9b4ad /test/integration/targets/prepare_http_tests
parentac3aa29d5bc59d48d9016fac6d285062c7babaa7 (diff)
downloadansible-00f0a015feb9b306fa585f14142de66c2a463036.tar.gz
Use setup_remote_tmp for windows httptester (#53255)
Diffstat (limited to 'test/integration/targets/prepare_http_tests')
-rw-r--r--test/integration/targets/prepare_http_tests/tasks/main.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/targets/prepare_http_tests/tasks/main.yml b/test/integration/targets/prepare_http_tests/tasks/main.yml
index 398c7b29f2..3a270d4001 100644
--- a/test/integration/targets/prepare_http_tests/tasks/main.yml
+++ b/test/integration/targets/prepare_http_tests/tasks/main.yml
@@ -46,7 +46,7 @@
- name: Windows - Get client cert/key
win_get_url:
url: http://ansible.http.tests/{{ item }}
- dest: '{{ win_output_dir }}\{{ item }}'
+ dest: '{{ remote_tmp_dir }}\{{ item }}'
register: win_download
# Server 2008 R2 is slightly slower, we attempt 5 retries
retries: 5
@@ -71,7 +71,7 @@
- name: Windows - Retrieve test cacert
win_get_url:
url: http://ansible.http.tests/cacert.pem
- dest: '{{ win_output_dir }}\cacert.pem'
+ dest: '{{ remote_tmp_dir }}\cacert.pem'
when: ansible_os_family == 'Windows'
- name: Redhat - Update ca trust
@@ -84,7 +84,7 @@
- name: Windows - Update ca trust
win_certificate_store:
- path: '{{ win_output_dir }}\cacert.pem'
+ path: '{{ remote_tmp_dir }}\cacert.pem'
state: present
store_location: LocalMachine
store_name: Root