mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
413 B
YAML
23 lines
413 B
YAML
5 years ago
|
---
|
||
|
- block:
|
||
|
- name: create test user with well know SID as the name
|
||
|
win_user:
|
||
|
name: S-1-0-0
|
||
|
password: AbcDef123!@#
|
||
|
state: present
|
||
|
|
||
|
- name: call module with SID tests
|
||
|
sid_utils_test:
|
||
|
sid_account: S-1-0-0
|
||
|
register: sid_test
|
||
|
|
||
|
always:
|
||
|
- name: remove test SID user
|
||
|
win_user:
|
||
|
name: S-1-0-0
|
||
|
state: absent
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- sid_test.data == 'success'
|