Select Git revision
module-absent.yml.in
-
Rafael Guterres Jeffman authored
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.
Rafael Guterres Jeffman authoredansible-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.
module-absent.yml.in 165 B
---
- name: ${name^} absent example
hosts: ipaserver
become: no
tasks:
- name: Ensure $name NAME is absent
ipa$name:
name: NAME
state: absent