mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix templating in examples.
Co-authored-by: Maxwell G <maxwell@gtmx.me>
This commit is contained in:
parent
69d67b5533
commit
22629623d8
1 changed files with 2 additions and 2 deletions
|
@ -83,12 +83,12 @@ EXAMPLES = r'''
|
|||
- name: Install system requirements
|
||||
ansible.builtin.package:
|
||||
name: "{{ requirements.system }}"
|
||||
when: "{{ requirements.system }}"
|
||||
when: "requirements.system"
|
||||
|
||||
- name: Install Python requirements
|
||||
ansible.builtin.pip:
|
||||
name: "{{ requirements.python }}"
|
||||
when: "{{ requirements.python }}"
|
||||
when: "requirements.python"
|
||||
'''
|
||||
|
||||
RETURN = r'''
|
||||
|
|
Loading…
Reference in a new issue