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.
20 lines
398 B
YAML
20 lines
398 B
YAML
4 years ago
|
- name: try to delete the user
|
||
|
user:
|
||
|
name: ansibulluser
|
||
|
state: absent
|
||
|
force: true
|
||
|
register: user_test2
|
||
|
|
||
|
- name: make a new list of users
|
||
|
script: userlist.sh {{ ansible_facts.distribution }}
|
||
|
register: user_names2
|
||
|
|
||
|
- debug:
|
||
|
var: user_names2
|
||
|
verbosity: 2
|
||
|
|
||
|
- name: validate results for testcase 2
|
||
|
assert:
|
||
|
that:
|
||
|
- '"ansibulluser" not in user_names2.stdout_lines'
|