Skip to content
Snippets Groups Projects

Add a single local dir for results plus much more

Merged Simon Street requested to merge add-single-local-dir-per-run into main
1 file
+ 14
2
Compare changes
  • Side-by-side
  • Inline
@@ -70,9 +70,21 @@
ansible.builtin.copy:
content: "{{ gitlabsos_common_data | to_nice_json }}"
dest: "{{ common_outputdirectory }}/{{ common_statsfile }}"
- name: Output stats to user
- name: Output summary
ansible.builtin.debug:
msg: "{{ gitlabsos_common_data | to_nice_json }}"
msg: |
{{ '...---... ' * 10 }}
Run completed!
Results can be found in the following locations:
Individual SOS files: {{ common_outputdirectory }}/{{ gitlabsos_common_data.timestamp }}/
{% if common_bundle_build -%}
Bundle: {{ common_outputdirectory }}/{{ common_bundle_outputfile }}
{% endif %}
{% if common_bundle_build and common_bundle_split -%}
Bundle split files: {{ common_outputdirectory }}/{{ common_bundle_outputfile }}.*
{% endif %}
Statistics: {{ common_statsfile }}
{{ '...---... ' * 10 }}
delegate_to: localhost
delegate_facts: true
run_once: true
Loading