Skip to content

Commit

Permalink
Merge pull request openstack-k8s-operators#431 from rebtoor/fix-multi…
Browse files Browse the repository at this point in the history
…pathd

Fixed typo while using `ansible.builtin.service_facts` in `edpm_multipathd` role
  • Loading branch information
openshift-ci[bot] authored Oct 10, 2023
2 parents b547875 + cc80c2d commit 8b13175
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/edpm_multipathd/tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
state: stopped
enabled: false
when:
- ansible_facts.service["multipathd"] is defined
- ansible_facts.service["multipathd"].status == "enabled"
- ansible_facts.services["multipathd"] is defined
- ansible_facts.services["multipathd"].status == "enabled"
failed_when: false
loop:
- multipathd.service
Expand Down

0 comments on commit 8b13175

Please sign in to comment.