summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/set_fact/set_fact_no_cache.yml
blob: f5a99792f1ba765fa94ebec449bb2ea4183e1ab5 (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
30
31
32
33
34
35
36
37
38
39
---
- name: Running with fact caching enabled but with cache flushed
  hosts: localhost
  tasks:
    - name: show ansible_foobar fact
      debug:
        var: ansible_foobar

    - name: assert ansible_foobar is correct value
      assert:
        that:
          - ansible_foobar is undefined

    - name: show ansible_foobar_not_cached fact
      debug:
        var: ansible_foobar_not_cached

    - name: assert ansible_foobar_not_cached is not cached
      assert:
        that:
          - ansible_foobar_not_cached is undefined

    - name: show ansible_foobar fact (FQCN)
      debug:
        var: ansible_foobar_fqcn

    - name: assert ansible_foobar is correct value (FQCN)
      assert:
        that:
          - ansible_foobar_fqcn is undefined

    - name: show ansible_foobar_not_cached fact (FQCN)
      debug:
        var: ansible_foobar_fqcn_not_cached

    - name: assert ansible_foobar_not_cached is not cached (FQCN)
      assert:
        that:
          - ansible_foobar_fqcn_not_cached is undefined