da60525610
* Make sure hard-coded action names also check for FQCN. * Use _add_internal_fqcn() to avoid hardcoded lists and typoes.
39 lines
1,022 B
YAML
39 lines
1,022 B
YAML
---
|
|
- 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
|