From 88f4e7f34bda4fbfc4ee6d513ffbec772037be1f Mon Sep 17 00:00:00 2001 From: Yujun Zhang Date: Wed, 19 Apr 2017 14:36:11 +0800 Subject: Use different folder for cached data - `dump` is for raw testing data and logs from remote - `cache` for temporary data required for testing Change-Id: I540338eae2dd7bbd14b359e1a0dbce186ada902b Signed-off-by: Yujun Zhang --- resources/metric/nDPI.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'resources/metric') diff --git a/resources/metric/nDPI.yaml b/resources/metric/nDPI.yaml index 0391302a..41bedc3d 100644 --- a/resources/metric/nDPI.yaml +++ b/resources/metric/nDPI.yaml @@ -10,9 +10,9 @@ - name: prepare sample pcap file get_url: - url: "https://build.opnfv.org/artifacts.opnfv.org/qtip/utilities/test.pcap" - dest: "{{ qtip_dump }}/localhost/{{ nDPI_file }}" - validate_certs: no # required when using proxy for https + url: "http://artifacts.opnfv.org/qtip/utilities/test.pcap" + dest: "{{ qtip_cache }}/{{ nDPI_file }}" + # validate_certs: no # required when using proxy for https run_once: yes delegate_to: localhost @@ -60,7 +60,7 @@ - name: copy sample packet file copy: - src: "{{ qtip_dump }}/localhost/{{ nDPI_file }}" + src: "{{ qtip_cache}}/{{ nDPI_file }}" dest: "{{ nDPI_cwd }}/example/{{ nDPI_file }}" - name: -- cgit 1.2.3-korg