summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/user/tasks/test_create_user_uid.yml
blob: 9ac8a96fa7964275176bae0e4ff27db5c4c9575d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# test adding user with uid
# https://github.com/ansible/ansible/issues/62969
- name: remove the test user
  user:
    name: ansibulluser
    state: absent

- name: try to create a user with uid
  user:
    name: ansibulluser
    state: present
    uid: 572
  register: user_test01_0

- name: create the user again
  user:
    name: ansibulluser
    state: present
    uid: 572
  register: user_test01_1

- name: validate results for testcase 0
  assert:
    that:
      - user_test01_0 is changed
      - user_test01_1 is not changed