mrlesmithjr/ansible-rabbitmq

RHEL clients not recognised

Closed this issue · 2 comments

The string check for running on RHEL is incorrect, leading to all the redhat.yml tasks being skipped:

ansible_distribution == "Red Hat Enterprise Linux" or

The correct setting for the distribution is:

"ansible_distribution": "RedHat",

(Or you could check this fact instead for all the RHEL variants:

"ansible_os_family": "RedHat",

)

stale commented

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.