We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hello, it is possible to include support for rocky linux or rather enterprise linux family?
thanks
The text was updated successfully, but these errors were encountered:
@oferchen you can do this by changing the when statement
from - ansible.builtin.include_tasks: setup-RedHat.yml when: ansible_os_family == 'RedHat'
- 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'
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']
when: ansible_os_family in ['RedHat','Rockey']
Sorry, something went wrong.
No branches or pull requests
hello,
it is possible to include support for rocky linux or rather enterprise linux family?
thanks
The text was updated successfully, but these errors were encountered: