mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 21:42:17 +00:00
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.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
---
|
||||
- name: ${name^} member present example
|
||||
hosts: ipaserver
|
||||
become: true
|
||||
become: no
|
||||
|
||||
tasks:
|
||||
- name: Ensure $name NAME is present
|
||||
|
||||
Reference in New Issue
Block a user