From 5f0c07943eeb2c655f147be5e59b5128775ec34a Mon Sep 17 00:00:00 2001 From: John Fulton Date: Tue, 25 Feb 2020 08:08:40 -0500 Subject: [PATCH] Make run-local.yml use ansible_connection local, not ssh If the intent of run-local.yml is to use a local ansible connection and not an SSH ansible connection, as implied by the tests/hosts.ini, then it shouldn't set a fact to set ansible_connection to 'ssh'. This patch changes it to 'local'. Change-Id: I7494a937749a434f9bfb2e14c47b36aebdf89664 Closes-Bug: #1864649 --- zuul.d/playbooks/run-local.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zuul.d/playbooks/run-local.yml b/zuul.d/playbooks/run-local.yml index 1b58edc9e..e9d36de1d 100644 --- a/zuul.d/playbooks/run-local.yml +++ b/zuul.d/playbooks/run-local.yml @@ -8,7 +8,7 @@ projects: "opendev.org/openstack/tripleo-ansible": src_dir: "{{ tripleo_src }}" - ansible_connection: ssh + ansible_connection: local - import_playbook: pre.yml