tripleo-ansible/zuul.d/playbooks/run-local.yml
John Fulton 5f0c07943e 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
2020-03-06 19:25:03 +00:00

16 lines
295 B
YAML

---
- hosts: all
tasks:
- name: set basic zuul fact
set_fact:
zuul:
projects:
"opendev.org/openstack/tripleo-ansible":
src_dir: "{{ tripleo_src }}"
ansible_connection: local
- import_playbook: pre.yml
- import_playbook: run.yml