5f0c07943e
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
16 lines
295 B
YAML
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
|