ansible-role-mysql
ansible-role-mysql copied to clipboard
support for rocky linux or el
hello, it is possible to include support for rocky linux or rather enterprise linux family?
thanks
@oferchen you can do this by changing the when statement
from
- ansible.builtin.include_tasks: setup-RedHat.yml
when: ansible_os_family == 'RedHat'
to
- ansible.builtin.include_tasks: setup-RedHat.yml
when: ansible_os_family == 'Rockey'
but a better approuch should be like this
- ansible.builtin.include_tasks: setup-RedHat.yml
when: ansible_os_family in ['RedHat','Rockey']
This issue has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution!
Please read this blog post to see the reasons why I mark issues as stale.
This issue has been closed due to inactivity. If you feel this is in error, please reopen the issue or file a new issue with the relevant details.