Closed mrobbert closed 4 years ago
Thanks for the ticket! Yea I think a PR would be great if you have something that works for you, or as you indicate the fix if fairly easy so I could as well. But yea for now, everything OS distribution specific is in "vars/{{ ansible_distribution }}-scl.yml" so the fix you've identified is appropriate.
Here is my pull request to fix this issue: #66
Fixed in #66, thanks again!
I'm trying to install OOD on a RHEL 7 host using this ansible role and found that it fails to run due to an include in task/main.yml ( include_vars: "{{ ansible_distribution }}-scl.yml" ) which doesn't exist for RedHat. I was able to get it to run by copying the vars/CentOS-scl.yml to vars/RedHat-scl.yml and then remove the following lines from that file:
additional_rpm_installs:
I can submit a pull request if you'd like, but maybe there is a cleaner way to fix that problem.