mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-07 22:03:18 +00:00
Most tests have simply been using the Tests as name, but this there is a lack of information in automated runs. The name should be similar to the test file name.
17 lines
307 B
YAML
17 lines
307 B
YAML
---
|
|
- name: Test users absent
|
|
hosts: ipaserver
|
|
become: true
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Include users_absent.json
|
|
include_vars:
|
|
file: users_absent.json
|
|
|
|
- name: Users absent
|
|
ipauser:
|
|
ipaadmin_password: SomeADMINpassword
|
|
users: "{{ users }}"
|
|
state: absent
|