summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/omit/75692.yml
blob: eaabd978819afa028f8ab332d1354ad4d0aa19c4 (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
29
- name: omit should reset to 'absent' or same context, not just 'default' value
  hosts: testhost
  gather_facts: false
  become: yes
  become_user: nobody
  roles:
    - name: setup_test_user
  tasks:
    - shell: whoami
      register: inherited

    - shell: whoami
      register: explicit_no
      become: false

    - shell: whoami
      register: omited_inheritance
      become: '{{ omit }}'

    - shell: whoami
      register: explicit_yes
      become: yes

    - name: ensure omit works with inheritance
      assert:
        that:
          - inherited.stdout == omited_inheritance.stdout
          - inherited.stdout == explicit_yes.stdout
          - inherited.stdout != explicit_no.stdout