Skip to content

Commit

Permalink
Merge pull request #602 from berndfinger/issue-586-leftover
Browse files Browse the repository at this point in the history
sap_hypervisor_node_preconfigure: Fix leftover 'that:' statement
  • Loading branch information
berndfinger authored Jan 15, 2024
2 parents a34e5be + c569360 commit 95cba31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- name: Assert that all required packages are installed
ansible.builtin.assert:
that: "'{{ line_item }}' in ansible_facts.packages"
that: line_item in ansible_facts.packages
fail_msg: "FAIL: Package '{{ line_item }}' is not installed!"
success_msg: "PASS: Package '{{ line_item }}' is installed."
with_items:
Expand Down

0 comments on commit 95cba31

Please sign in to comment.