summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/module_utils_Ansible.Become/tasks/main.yml
blob: deb228b5c5c5aeccd996059949e925b2ec5f1270 (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
27
28
---
# Users by default don't have this right, temporarily enable it
- name: ensure the Users group have the SeBatchLogonRight
  win_user_right:
    name: SeBatchLogonRight
    users:
    - Users
    action: add
  register: batch_user_add

- block:
  - name: test Ansible.Become.cs
    ansible_become_tests:
    register: ansible_become_tests

  always:
  - name: remove SeBatchLogonRight from users if added in test
    win_user_right:
      name: SeBatchLogonRight
      users:
      - Users
      action: remove
    when: batch_user_add is changed

- name: assert test Ansible.Become.cs
  assert:
    that:
    - ansible_become_tests.data == "success"