From 9e464b64382f2ab244f41798a3d483dc650836a8 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Tue, 11 Jul 2017 14:12:32 -0400 Subject: [PATCH] Enable verify_host for synchronize There is no need to have this disabled (seems to be by default). We already have ensured our SSH hostkeys have been setup properly. Change-Id: I5f0ffea13b4adb053c10d56728bcf02c13255513 Signed-off-by: Paul Belanger --- playbooks/tox/post.yaml | 1 + playbooks/tox/tarball-post.yaml | 1 + roles/fetch-sphinx-output/tasks/main.yaml | 1 + roles/fetch-testr-output/tasks/main.yaml | 1 + 4 files changed, 4 insertions(+) diff --git a/playbooks/tox/post.yaml b/playbooks/tox/post.yaml index 48edce22b..e9d2bf9f7 100644 --- a/playbooks/tox/post.yaml +++ b/playbooks/tox/post.yaml @@ -19,4 +19,5 @@ dest: "{{ zuul.executor.log_root }}/tox" mode: pull src: "{{ item.path }}/log/" + verify_host: true with_items: "{{ result.files }}" diff --git a/playbooks/tox/tarball-post.yaml b/playbooks/tox/tarball-post.yaml index 386c9b3f5..2127d93a2 100644 --- a/playbooks/tox/tarball-post.yaml +++ b/playbooks/tox/tarball-post.yaml @@ -5,6 +5,7 @@ dest: "{{ zuul.executor.src_root }}/tarballs" mode: pull src: "src/{{ zuul.project.canonical_name }}/dist/{{ item }}" + verify_host: true with_items: - "*.tar.gz" - "*.whl" diff --git a/roles/fetch-sphinx-output/tasks/main.yaml b/roles/fetch-sphinx-output/tasks/main.yaml index 22c3ce5cc..7a250547f 100644 --- a/roles/fetch-sphinx-output/tasks/main.yaml +++ b/roles/fetch-sphinx-output/tasks/main.yaml @@ -3,4 +3,5 @@ dest: "{{ zuul.executor.log_root }}" mode: pull src: "{{ zuul_work_dir }}/doc/build/html" + verify_host: true no_log: true diff --git a/roles/fetch-testr-output/tasks/main.yaml b/roles/fetch-testr-output/tasks/main.yaml index 163226322..d831c416e 100644 --- a/roles/fetch-testr-output/tasks/main.yaml +++ b/roles/fetch-testr-output/tasks/main.yaml @@ -5,6 +5,7 @@ rsync_opts: - "--ignore-missing-args" src: "{{ zuul_work_dir }}/{{ item }}" + verify_host: true with_items: - "*testr_results.html.gz" - "*testrepository.subunit.gz"