Files
ansible-freeipa/utils/templates/module-present.yml.in
Rafael Guterres Jeffman e38c34974d templates: Use become: no in playbooks by default.
ansible-freeipa modules should work without superuser privileges in
most cases, and to reflect this, the module tests should avoid using
`become: yes`.

This PR change the test playbook templates to use `become: no` by
default, so only modules that require superuser privileges will need
to change this variable.
2021-09-01 12:45:25 -03:00

11 lines
182 B
YAML

---
- name: ${name^} present example
hosts: ipaserver
become: no
tasks:
- name: Ensure $name NAME is present
ipa$name:
name: NAME
# Add needed parameters here