Skip to content

Commit

Permalink
Fixing lint error, and adding variable to readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaleb Stolee committed Oct 23, 2024
1 parent bfa7a1c commit ce49bdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion roles/parse_leapp_report/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The `parse_leapp_report` role is used by the `analysis` or `upgrade` roles to ch
|-------------------------|-----------------------|-----------------------------------------------------|
| result_filename | "/var/log/leapp/leapp-report.txt" | Path of the Leapp pre-upgrade report file. |
| result_filename_prefix | "/var/log/leapp/leapp-report | The path used and the prefix name setting for the Leapp report |
| result_filename_json | "{{ result_filename_prefix }}.json | JSON filename using the selected "result_filename_prefix" |
| result_fact_cacheable | "false" | Allow the parse leapp report to be included as a cacheable fact |

## Example playbook

Expand Down
2 changes: 1 addition & 1 deletion roles/parse_leapp_report/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

- name: Parse report results
ansible.builtin.set_fact:
cacheable: "{{ result_fact_cacheable }}"
cacheable: "{{ result_fact_cacheable }}"
leapp_report_txt: "{{ results_txt.content | b64decode | split('\n') }}"
leapp_report_json: "{{ results_json.content | b64decode | from_json }}"

Expand Down

0 comments on commit ce49bdf

Please sign in to comment.