mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Explain conditionals as applied to roles. I could also explain with_items but the scope questions are complex
here, and it is better to include such loops inside the imported tasks.
This commit is contained in:
@@ -473,6 +473,16 @@ Also, should you wish to parameterize roles, by adding variables, you can do so,
|
||||
- { role: foo_app_instance, dir: '/opt/a', port: 5000 }
|
||||
- { role: foo_app_instance, dir: '/opt/b', port: 5001 }
|
||||
|
||||
While it's probably not something you should do often, you can also conditionally apply roles like so::
|
||||
|
||||
---
|
||||
- hosts: webservers
|
||||
roles:
|
||||
- { role: some_role, when: "ansible_os_family == 'RedHat'" }
|
||||
|
||||
This works by applying the conditional to every task in the role. Conditionals are covered later on in
|
||||
the documentation.
|
||||
|
||||
Executing A Playbook
|
||||
````````````````````
|
||||
|
||||
|
||||
Reference in New Issue
Block a user