novajoin/playbooks/functional/post.yaml

42 lines
1.0 KiB
YAML

- hosts: all
tasks:
- name: Make ipaserver-install log readable
file:
path: "/var/log/ipaserver-install.log"
mode: 0644
become: true
failed_when: false
- name: Collect ipaserver-install logs
synchronize:
dest: "{{ zuul.executor.log_root }}"
mode: pull
src: "/var/log/ipaserver-install.log"
verify_host: true
failed_when: false
- name: Collect novajoin-install logs
synchronize:
dest: "{{ zuul.executor.log_root }}"
mode: pull
src: "/var/log/novajoin-install.log"
verify_host: true
failed_when: false
- name: Collect novajoin logs
synchronize:
dest: "{{ zuul.executor.log_root }}"
mode: pull
src: "/var/log/novajoin"
verify_host: true
failed_when: false
- name: Collect setup ipa client log
synchronize:
dest: "{{ zuul.executor.log_root }}"
mode: pull
src: "/tmp/setup-ipa-client.log"
verify_host: true
failed_when: false