mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-08 14:23:11 +00:00
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.
12 lines
198 B
YAML
12 lines
198 B
YAML
---
|
|
- name: ${name^} member present example
|
|
hosts: ipaserver
|
|
become: no
|
|
|
|
tasks:
|
|
- name: Ensure $name NAME is present
|
|
ipa$name:
|
|
name: NAME
|
|
PARAMETER2: VALUE
|
|
action: member
|