zhulingjie f7996cb73e Make the playbook's yaml file start with "---"
1. the yamls file of playbook should start with "---".
2. Update the url to https due to it redirct to it.

Change-Id: Id54cab0071fbd0aad5189257e1002e7a6f45a822
2018-10-10 10:37:26 -04:00

20 lines
541 B
YAML

---
- hosts: all
tasks:
- name: Copy logs from worker nodes to executor node
synchronize:
# TODO: make it sort of tox_envdir
src: '{{ zuul.project.src_dir }}/.tox/func/logs'
dest: '{{ zuul.executor.log_root }}'
mode: pull
copy_links: true
verify_host: true
- name: Copy conf files from worker nodes to executor node
synchronize:
src: '/etc/swift'
dest: '{{ zuul.executor.log_root }}'
mode: pull
copy_links: true
verify_host: true