11f9afba1b
Change-Id: Id71c1ecda9f8647a0eb290fe02a12afb3df09988
34 lines
853 B
YAML
34 lines
853 B
YAML
---
|
|
- hosts: all
|
|
vars:
|
|
logs_dir: "/tmp/logs"
|
|
tasks:
|
|
- name: Print all facts
|
|
copy:
|
|
content: "{{ hostvars[inventory_hostname] | to_nice_json }}"
|
|
dest: "{{ logs_dir }}/facts.json"
|
|
|
|
- name: Run diagnostics script
|
|
script: get_logs.sh
|
|
register: get_logs_result
|
|
become: true
|
|
failed_when: false
|
|
|
|
- name: Print get_logs output
|
|
debug:
|
|
msg: "{{ get_logs_result.stdout }}"
|
|
|
|
- name: Download logs to executor
|
|
synchronize:
|
|
dest: "{{ zuul.executor.log_root }}/{{ inventory_hostname }}"
|
|
mode: pull
|
|
src: "{{ logs_dir }}/"
|
|
ignore_errors: yes
|
|
|
|
- name: Download /etc/hosts file to executor
|
|
synchronize:
|
|
src: "/etc/hosts"
|
|
dest: "{{ zuul.executor.log_root }}/{{inventory_hostname }}/"
|
|
mode: pull
|
|
ignore_errors: yes
|