diff options
-rw-r--r-- | ansible/fedora.yml | 8 | ||||
-rw-r--r-- | ansible/include/download-results.yml | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ansible/fedora.yml b/ansible/fedora.yml index 8e09402..c22ac4b 100644 --- a/ansible/fedora.yml +++ b/ansible/fedora.yml @@ -60,11 +60,11 @@ - shell: cd /root && tar -xf postgresql-setup-tests.tar.gz - shell: cd /root/postgresql-setup-tests && ./run - - register: test_result - - ignore_errors: yes + register: test_result + ignore_errors: yes - include: include/download-results.yml - name: stop the vm - - shell: echo "not implemented yet - - when: test_result.rc == 0 + shell: echo "not implemented yet" + when: test_result.rc == 0 diff --git a/ansible/include/download-results.yml b/ansible/include/download-results.yml index 07f1382..e3a551d 100644 --- a/ansible/include/download-results.yml +++ b/ansible/include/download-results.yml @@ -1,3 +1,3 @@ - shell: cd /var/tmp ; tar -czf dtf.tar.gz dtf -- fetch: src=/var/tmp/dtf.tar.gz dest={{ opt_tmp_resultdir }} flat=yes +- fetch: src=/var/tmp/dtf.tar.gz dest="{{ opt_tmp_resultdir }}/" flat=yes |