1
0
Fork 0
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:
Felix Fontein 2023-12-21 13:14:45 +01:00 committed by GitHub
parent 69d67b5533
commit 22629623d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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'''